mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 18:08:34 -07:00
6 lines
186 B
Bash
6 lines
186 B
Bash
# get the name of the branch we are on
|
|
function rvm_prompt_info() {
|
|
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
|
|
[[ ! -z $ruby_version ]] && echo "($ruby_version)"
|
|
}
|