diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-19 09:47:25 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-19 09:47:25 +0100 |
commit | 5bfe5141cce192b17d1327809126048ec6dc622c (patch) | |
tree | 0952b62e899e066bbb55ee70c2b44ed8689f9a58 /prompt.zsh | |
parent | 72fca3c9a52dd8b8c2970c43e7cbee1b94f2f707 (diff) | |
download | git-sonar-5bfe5141cce192b17d1327809126048ec6dc622c.tar.gz git-sonar-5bfe5141cce192b17d1327809126048ec6dc622c.zip |
Color zsh prompt slightly differently
Diffstat (limited to '')
-rwxr-xr-x | prompt.zsh | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |