0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/lib/rvm.zsh

6 lines
186 B
Bash
Raw Normal View History

2010-05-19 08:53:16 +02:00
# get the name of the branch we are on
function rvm_prompt_info() {
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
2012-09-26 22:57:38 +02:00
[[ ! -z $ruby_version ]] && echo "($ruby_version)"
2010-05-19 08:53:16 +02:00
}