summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-08-18 22:45:17 +0100
committerMichael Allen <michael@michaelallen.io>2015-08-18 22:45:17 +0100
commit592f945518231a63f330bb473079b827435920f8 (patch)
treec95832158c579c24d8c6178764246f54b72ced86
parent073bd97c8a0d9f4c0d6d9b46dca4e6cec6b46af6 (diff)
downloadgit-sonar-592f945518231a63f330bb473079b827435920f8.tar.gz
git-sonar-592f945518231a63f330bb473079b827435920f8.zip
Fix up zsh prompt
Diffstat (limited to '')
-rwxr-xr-xprompt.zsh13
1 files changed, 6 insertions, 7 deletions
diff --git a/prompt.zsh b/prompt.zsh
index 34e5bd2..75591fc 100755
--- a/prompt.zsh
+++ b/prompt.zsh
@@ -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