From cd9b5774bb0ccd0ce9e83c1a133bafc1fec9cc89 Mon Sep 17 00:00:00 2001 From: Shawn Sorichetti Date: Fri, 3 Feb 2012 16:33:29 -0500 Subject: [PATCH] change what symbols are used for different git statuses. Didn't like the previous ones as they conflicted with what I'm used to. --- themes/hide.zsh-theme | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/themes/hide.zsh-theme b/themes/hide.zsh-theme index 4c116be0f..ecbb123d0 100644 --- a/themes/hide.zsh-theme +++ b/themes/hide.zsh-theme @@ -21,13 +21,14 @@ function box_name { ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" -ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}:" -ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[green]%}!" -ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" +ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[green]%}?" +ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}!" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[yellow]%}:" +ZSH_THEME_GIT_PROMPT_DIRTY="" ZSH_THEME_GIT_PROMPT_CLEAN=":" PROMPT=' -%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}$(box_name)%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)$(git_prompt_status) +%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}$(box_name)%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)$(git_prompt_status)%{$reset_color%} $(virtualenv_info)$ ' local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"