diff options
author | jais <jais@www2.cybersecure.com.au> | 2012-07-03 15:12:55 +1000 |
---|---|---|
committer | jais <jais@www2.cybersecure.com.au> | 2012-07-03 15:12:55 +1000 |
commit | 8d60f9a0d8eaf7f72eb64f600fcecbe48a26300f (patch) | |
tree | 55e229aae7e8682c8769d76683da9b17299d400d /themes/jaischeema.zsh-theme | |
parent | c23392ac5b9e8655a42e827983ba93636801136b (diff) | |
download | zsh-8d60f9a0d8eaf7f72eb64f600fcecbe48a26300f.tar.gz zsh-8d60f9a0d8eaf7f72eb64f600fcecbe48a26300f.tar.bz2 zsh-8d60f9a0d8eaf7f72eb64f600fcecbe48a26300f.zip |
Fix the rvm gemset right prompt:wq
Diffstat (limited to 'themes/jaischeema.zsh-theme')
-rw-r--r-- | themes/jaischeema.zsh-theme | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/themes/jaischeema.zsh-theme b/themes/jaischeema.zsh-theme index 06778216d..aecc5b961 100644 --- a/themes/jaischeema.zsh-theme +++ b/themes/jaischeema.zsh-theme @@ -17,6 +17,7 @@ ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) " if which rbenv &> /dev/null; then RPROMPT='%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%}' else -if which rvm-prompt &> /dev/null; then - RPROMPT='%{$fg[red]%}$(rvm-prompt)%{$reset_color%}' + if which rvm-prompt &> /dev/null; then + RPROMPT='%{$fg[red]%}$(rvm-prompt)%{$reset_color%}' + fi fi |