mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
Merge pull request #5094 from pzgull/add-rbenv-to-avit-theme
Add rbenv support for ruby version display in the Avit theme
This commit is contained in:
commit
de427f32b3
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue