summaryrefslogtreecommitdiffstats
path: root/prompt.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'prompt.zsh')
-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