summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-08-19 09:47:25 +0100
committerMichael Allen <michael@michaelallen.io>2015-08-19 09:47:25 +0100
commit5bfe5141cce192b17d1327809126048ec6dc622c (patch)
tree0952b62e899e066bbb55ee70c2b44ed8689f9a58
parent72fca3c9a52dd8b8c2970c43e7cbee1b94f2f707 (diff)
downloadgit-sonar-5bfe5141cce192b17d1327809126048ec6dc622c.tar.gz
git-sonar-5bfe5141cce192b17d1327809126048ec6dc622c.zip
Color zsh prompt slightly differently
-rwxr-xr-xprompt.zsh10
1 files changed, 5 insertions, 5 deletions
diff --git a/prompt.zsh b/prompt.zsh
index 135898a..281d437 100755
--- a/prompt.zsh
+++ b/prompt.zsh
@@ -5,12 +5,12 @@ source "$dot/git-base.sh"
if is_repo; then
autoload colors && colors
- git_prefix="%{$fg_bold[black]%} git:(%{$reset_color%}"
- git_suffix="%{$fg_bold[black]%})%{$reset_color%}"
- printf '%s' $git_prefix
+ printf '%s' "%{$fg_bold[black]%} git:(%{$reset_color%}"
zsh_color_remote_commits
- branch_name
+ printf '%s' "%{$fg[white]%}"
+ readable_branch_name
+ printf '%s' "%{$reset_color%}"
zsh_color_local_commits
- printf '%s' $git_suffix
+ printf '%s' "%{$fg_bold[black]%})%{$reset_color%}"
zsh_color_changes_status
fi