mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fix bold in informative git prompt.
Currently this fix is useless, as web config cannot apply variables, but in future, it could be more useful.
This commit is contained in:
parent
44d13869ad
commit
591abd340b
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
set -g __fish_git_prompt_show_informative_status 1
|
||||
set -g __fish_git_prompt_hide_untrackedfiles 1
|
||||
|
||||
set -g __fish_git_prompt_color_branch magenta bold
|
||||
set -g __fish_git_prompt_color_branch magenta --bold
|
||||
set -g __fish_git_prompt_showupstream "informative"
|
||||
set -g __fish_git_prompt_char_upstream_ahead "↑"
|
||||
set -g __fish_git_prompt_char_upstream_behind "↓"
|
||||
|
@ -20,7 +20,7 @@ set -g __fish_git_prompt_color_dirtystate blue
|
|||
set -g __fish_git_prompt_color_stagedstate yellow
|
||||
set -g __fish_git_prompt_color_invalidstate red
|
||||
set -g __fish_git_prompt_color_untrackedfiles $fish_color_normal
|
||||
set -g __fish_git_prompt_color_cleanstate green bold
|
||||
set -g __fish_git_prompt_color_cleanstate green --bold
|
||||
|
||||
|
||||
function fish_prompt --description 'Write out the prompt'
|
||||
|
|
Loading…
Reference in a new issue