ZSH: Re-instated the unicode characters
This commit is contained in:
parent
8dfc4612a0
commit
9fec91123a
1 changed files with 4 additions and 4 deletions
|
@ -5,17 +5,17 @@ if [ -n "$__CURRENT_GIT_BRANCH" ]; then
|
||||||
s+="$__CURRENT_GIT_BRANCH"
|
s+="$__CURRENT_GIT_BRANCH"
|
||||||
case "$__CURRENT_GIT_BRANCH_STATUS" in
|
case "$__CURRENT_GIT_BRANCH_STATUS" in
|
||||||
ahead)
|
ahead)
|
||||||
s+="^"
|
s+="↑"
|
||||||
;;
|
;;
|
||||||
diverged)
|
diverged)
|
||||||
s+="-/="
|
s+="↕"
|
||||||
;;
|
;;
|
||||||
behind)
|
behind)
|
||||||
s+="v"
|
s+="↓"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
if [ -n "$__CURRENT_GIT_BRANCH_IS_DIRTY" ]; then
|
if [ -n "$__CURRENT_GIT_BRANCH_IS_DIRTY" ]; then
|
||||||
s+="*"
|
s+="⚡"
|
||||||
fi
|
fi
|
||||||
s+=")"
|
s+=")"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue