Fixed light colors for git prompt

This commit is contained in:
Pedro Matias 2019-03-04 11:20:58 -08:00
parent b259cdf7e7
commit ab968eb41e
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ prompt_git() {
dirty=$(parse_git_dirty)
ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git rev-parse --short HEAD 2> /dev/null)"
if [[ -n $dirty ]]; then
prompt_segment yellow black
prompt_segment yellow $CURRENT_FG
else
prompt_segment green $CURRENT_FG
fi