diff options
Diffstat (limited to 'config/all')
-rw-r--r-- | config/all/zsh/20-appearance.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/all/zsh/20-appearance.zsh b/config/all/zsh/20-appearance.zsh index 4f7c8d9..1672790 100644 --- a/config/all/zsh/20-appearance.zsh +++ b/config/all/zsh/20-appearance.zsh @@ -52,7 +52,7 @@ function repo_prompt_info { ref=$(git symbolic-ref HEAD 2> /dev/null || git rev-parse --short HEAD 2> /dev/null) if [ $? -eq 0 ]; then #repo=$(basename $(git rev-parse --show-toplevel)) - echo "%{$fg[cyan]%}%{\e[1m%}${ref#refs/heads/}%{$reset_color%}" + echo "%{$fg[cyan]%}${ref#refs/heads/}%{$reset_color%}" return fi } |