- local wt_str
- (( modified > 0 )) && wt_str+="%{$fg[red]%} *$modified"
- (( deleted_wt > 0 )) && wt_str+="%{$fg[red]%} -$deleted_wt"
- (( untracked > 0 )) && wt_str+="%{$fg[red]%} +$untracked"
- (( unmerged > 0 )) && wt_str+="%{$fg[magenta]%} ♒$unmerged"
- git_status+="$wt_str"
+ git_status+="%{$fg_no_bold[red]%}"
+ (( modified > 0 )) && git_status+=" *$modified"
+ (( deleted_wt > 0 )) && git_status+=" -$deleted_wt"
+ (( untracked > 0 )) && git_status+=" +$untracked"
+ git_status+="%{$fg_no_bold[magenta]%}"
+ (( unmerged > 0 )) && git_status+=" ♒$unmerged"