diff options
-rw-r--r-- | themes/avit.zsh-theme | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/avit.zsh-theme b/themes/avit.zsh-theme index 87d5be30a..4f0dcbcc6 100644 --- a/themes/avit.zsh-theme +++ b/themes/avit.zsh-theme @@ -41,6 +41,8 @@ function _vi_status() { function _ruby_version() { if {echo $fpath | grep -q "plugins/rvm"}; then echo "%{$fg[grey]%}$(rvm_prompt_info)%{$reset_color%}" + elif {echo $fpath | grep -q "plugins/rbenv"}; then + echo "%{$fg[grey]%}$(rbenv_prompt_info)%{$reset_color%}" fi } |