From efd2364a210afa81e37017ee401e6a8ef2a37675 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Wed, 22 Feb 2023 19:48:31 -0600 Subject: don't bold repo name in prompt --- config/all/zsh/20-appearance.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3