From d2cd14c096f3c21fb6e70ec7ed6e60a817176798 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Thu, 20 Jun 2013 22:44:38 -0500 Subject: [PATCH] updating prompt color --- zsh/prompt.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/prompt.zsh b/zsh/prompt.zsh index 2b083ee..52004f5 100644 --- a/zsh/prompt.zsh +++ b/zsh/prompt.zsh @@ -43,9 +43,9 @@ git_prompt_info() { needs_push() { if [[ $(git cherry -v @{upstream} 2>/dev/null) == "" ]] then - echo " " + echo "" else - echo " %{$fg_bold[magenta]%}☁%{$reset_color%} " + echo "%{$fg_bold[magenta]%}☁%{$reset_color%} " fi } @@ -61,7 +61,7 @@ suspended_jobs() { precmd() { vcs_info - print -P '\n%F{blue}%~ `git_dirty`%F{236}$vcs_info_msg_0_%f' + print -P '\n%F{013}%~ `git_dirty`%F{236}$vcs_info_msg_0_%f `needs_push`' } export PROMPT='%(?.%F{magenta}.%F{red})❯%f '