mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Add a prompt for rbenv ruby version
This commit is contained in:
parent
a324bc75f7
commit
443c1dbc8f
1 changed files with 7 additions and 0 deletions
|
@ -227,6 +227,13 @@ prompt_rvm() {
|
|||
fi
|
||||
}
|
||||
|
||||
# rbenv information
|
||||
prompt_rbenv() {
|
||||
if [[ -n "$RBENV_VERSION" ]]; then
|
||||
$1_prompt_segment red black "$RBENV_VERSION"
|
||||
fi
|
||||
}
|
||||
|
||||
# Main prompt
|
||||
build_left_prompt() {
|
||||
if (( ${#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS} == 0 )); then
|
||||
|
|
Loading…
Reference in a new issue