diff --git a/common/.config/fish/functions/fish_prompt.fish b/common/.config/fish/functions/fish_prompt.fish index 253e712..7d62bd7 100755 --- a/common/.config/fish/functions/fish_prompt.fish +++ b/common/.config/fish/functions/fish_prompt.fish @@ -176,7 +176,7 @@ function fish_prompt --description 'Write out the prompt' echo -s $normal echo -n -s (set_color --bold -b $color_bind $color_text) $char_bind - echo -n -s (set_color -b $color_status $color_bind) '' + echo -n -s (set_color -b $color_cwd $color_bind) '' echo -n -s (set_color -b $color_cwd $color_text) $suffix echo -n -s (set_color -b normal $color_cwd) ' ' $normal diff --git a/common/.config/fish/functions/prompt_login.fish b/common/.config/fish/functions/prompt_login.fish index 73f3a97..f67bea3 100755 --- a/common/.config/fish/functions/prompt_login.fish +++ b/common/.config/fish/functions/prompt_login.fish @@ -40,7 +40,7 @@ function prompt_login --description "display user name for the prompt" end echo -n -s (set_color -b $color_user $color_dark_text) "$USER" - echo -n -s (set_color -b $color_host $fish_color_user)  + echo -n -s (set_color -b $color_host $color_user)  echo -n -s (set_color -b $color_host $color_dark_text) (prompt_hostname) echo -n -s (set_color -b $color_venv $color_host)  end