summaryrefslogtreecommitdiffstats
path: root/prompt.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'prompt.zsh')
-rwxr-xr-xprompt.zsh9
1 files changed, 7 insertions, 2 deletions
diff --git a/prompt.zsh b/prompt.zsh
index 75591fc..135898a 100755
--- a/prompt.zsh
+++ b/prompt.zsh
@@ -5,7 +5,12 @@ source "$dot/git-base.sh"
if is_repo; then
autoload colors && colors
- git_prefix="%{$fg_bold[black]%}git:(%{$reset_color%}"
+ 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)"
+ printf '%s' $git_prefix
+ zsh_color_remote_commits
+ branch_name
+ zsh_color_local_commits
+ printf '%s' $git_suffix
+ zsh_color_changes_status
fi