diff --git a/zsh/functions/prompt_git_info b/zsh/functions/prompt_git_info index 8faf830..76d889a 100755 --- a/zsh/functions/prompt_git_info +++ b/zsh/functions/prompt_git_info @@ -5,17 +5,17 @@ if [ -n "$__CURRENT_GIT_BRANCH" ]; then s+="$__CURRENT_GIT_BRANCH" case "$__CURRENT_GIT_BRANCH_STATUS" in ahead) - s+="^" + s+="↑" ;; diverged) - s+="-/=" + s+="↕" ;; behind) - s+="v" + s+="↓" ;; esac if [ -n "$__CURRENT_GIT_BRANCH_IS_DIRTY" ]; then - s+="*" + s+="⚡" fi s+=")"