diff options
author | justvitalius <justvitalius@gmail.com> | 2015-09-27 19:01:12 +0300 |
---|---|---|
committer | justvitalius <justvitalius@gmail.com> | 2015-09-27 19:01:12 +0300 |
commit | dc3413b91cb5ab2d78b74ab58dbdeabd6728b8ca (patch) | |
tree | 224401d3a1a137ee0e3105525607e247c8dd2c4b /themes/amuse.zsh-theme | |
parent | b75b0b88823b6196fd18da8d9e7e16a1e014f14e (diff) | |
download | zsh-dc3413b91cb5ab2d78b74ab58dbdeabd6728b8ca.tar.gz zsh-dc3413b91cb5ab2d78b74ab58dbdeabd6728b8ca.tar.bz2 zsh-dc3413b91cb5ab2d78b74ab58dbdeabd6728b8ca.zip |
Fix print rvm version in amuse theme
Diffstat (limited to 'themes/amuse.zsh-theme')
-rw-r--r-- | themes/amuse.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/amuse.zsh-theme b/themes/amuse.zsh-theme index c1314e8b1..4e7361ced 100644 --- a/themes/amuse.zsh-theme +++ b/themes/amuse.zsh-theme @@ -20,7 +20,7 @@ ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" ZSH_THEME_GIT_PROMPT_CLEAN="" if [ -e ~/.rvm/bin/rvm-prompt ]; then - RPROMPT='%{$fg_bold[red]%}‹$(~/.rvm/bin/rvm-prompt i v)›%{$reset_color%}' + RPROMPT='%{$fg_bold[red]%}‹$(rvm_current)›%{$reset_color%}' else if which rbenv &> /dev/null; then RPROMPT='%{$fg_bold[red]%}$(rbenv_version)%{$reset_color%}' |