diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-18 22:45:17 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-18 22:45:17 +0100 |
commit | 592f945518231a63f330bb473079b827435920f8 (patch) | |
tree | c95832158c579c24d8c6178764246f54b72ced86 /prompt.zsh | |
parent | 073bd97c8a0d9f4c0d6d9b46dca4e6cec6b46af6 (diff) | |
download | git-sonar-592f945518231a63f330bb473079b827435920f8.tar.gz git-sonar-592f945518231a63f330bb473079b827435920f8.zip |
Fix up zsh prompt
Diffstat (limited to '')
-rwxr-xr-x | prompt.zsh | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -2,11 +2,10 @@ dot="$(cd "$(dirname "$0")"; pwd)" source "$dot/git-base.sh" -autoload colors && colors -command="$1" - -git_prefix="%{$fg_bold[black]%}git:(%{$reset_color}" -git_suffix="%{$fg_bold[black]%})%{$reset_color}" -printf '%s' " $git_prefix" -#<Down>$(zsh_color_remote_commits;branch_name;zsh_color_local_commits)$git_suffix$(zsh_color_changes_status)" +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$(zsh_color_remote_commits;branch_name;zsh_color_local_commits)$git_suffix$(zsh_color_changes_status)" +fi |