From 49b7494fab2df8eb2aa1924ecdcde07adc062b26 Mon Sep 17 00:00:00 2001 From: Never Gude Date: Tue, 30 Dec 2025 16:39:08 +0100 Subject: [PATCH] yo --- .config/fish/functions/fish_prompt.fish | 34 ++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish index 49f1662..813259b 100644 --- a/.config/fish/functions/fish_prompt.fish +++ b/.config/fish/functions/fish_prompt.fish @@ -1,23 +1,23 @@ function fish_prompt - if not set -q VIRTUAL_ENV_DISABLE_PROMPT - set -g VIRTUAL_ENV_DISABLE_PROMPT true - end - - set_color brwhite - set_color --background 504945 - set -g __fish_git_prompt_show_informative_status true - printf '%s ' (fish_vcs_prompt) + if not set -q VIRTUAL_ENV_DISABLE_PROMPT + set -g VIRTUAL_ENV_DISABLE_PROMPT true + end - set_color white - set_color --background 3c3836 - printf ' %s ' (prompt_pwd -D 8) + set_color brwhite + set_color --background 504945 + set -g __fish_git_prompt_show_informative_status true + printf '%s' (fish_git_prompt " %s ") - echo + set_color white + set_color --background 3c3836 + printf ' %s ' (prompt_pwd -D 8) - if test -n "$VIRTUAL_ENV" - printf "(%s) " (set_color blue)(path basename $VIRTUAL_ENV)(set_color normal) - end + echo - set_color normal - echo + if test -n "$VIRTUAL_ENV" + printf "(%s) " (set_color blue)(path basename $VIRTUAL_ENV)(set_color normal) + end + + set_color normal + echo end