From 76aa2ecfe82a3ef94c2f9442116fb9ca057a66e7 Mon Sep 17 00:00:00 2001 From: startling things Date: Fri, 9 Sep 2011 14:12:03 -0500 Subject: [PATCH] pwd prompt in tiny theme is actually cyan now also fixed some issues with spacing that came up. --- themes/tiny.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/tiny.zsh-theme b/themes/tiny.zsh-theme index 00d413781..9aee83d8e 100644 --- a/themes/tiny.zsh-theme +++ b/themes/tiny.zsh-theme @@ -10,7 +10,7 @@ function collapse_pwd { function prompt_character { # if you're in a git branch, the prompt character is '±' # (this is handled by git_colors) - git branch >> /dev/null 2>> /dev/null && echo "%{$fg[`git_colors`]%}±%{$reset_color%}" && return + git branch >> /dev/null 2>> /dev/null && echo "%{$fg[`git_colors`]%} ±%{$reset_color%}" && return } function git_colors { @@ -34,4 +34,4 @@ function git_branch { fi } -PROMPT='$(collapse_pwd) %{$fg[cyan]%}$(git_branch)%{$reset_color%}$(prompt_character) » ' +PROMPT='%{$fg[cyan]%}$(collapse_pwd)$(git_branch)%{$reset_color%}$(prompt_character) » '