0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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

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