mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-22 07:11:58 +00:00
[WIP] Rebase to origin:next branch
This commit is contained in:
parent
4f0c3ffdf8
commit
415194941c
1 changed files with 11 additions and 0 deletions
|
@ -622,6 +622,17 @@ prompt_rbenv() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# chruby information
|
||||||
|
# see https://github.com/postmodern/chruby/issues/245 for chruby_auto issue with ZSH
|
||||||
|
prompt_chruby() {
|
||||||
|
local chruby_env
|
||||||
|
chrb_env="$(chruby 2> /dev/null | grep \* | tr -d '* ')"
|
||||||
|
# Don't show anything if the chruby did not change the default ruby
|
||||||
|
if [[ "${chrb_env:-system}" != "system" ]]; then
|
||||||
|
"$1_prompt_segment" "$0" "$2" "red" "$DEFAULT_COLOR" "${chrb_env}" 'RUBY_ICON'
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# Print an icon if user is root.
|
# Print an icon if user is root.
|
||||||
prompt_root_indicator() {
|
prompt_root_indicator() {
|
||||||
if [[ "$UID" -eq 0 ]]; then
|
if [[ "$UID" -eq 0 ]]; then
|
||||||
|
|
Loading…
Reference in a new issue