diff options
author | Matt Singleton <matt@xcolour.net> | 2023-02-22 19:48:31 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2023-02-22 19:48:31 -0600 |
commit | efd2364a210afa81e37017ee401e6a8ef2a37675 (patch) | |
tree | 020d42abeb6fa166706cccf28947e275051beb48 | |
parent | bf2f7d42b4d9f64d43b397083d78ba57155fd755 (diff) |
don't bold repo name in prompt
-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 } |