[prompt] add ranger indicator to eriner theme

closes #64
This commit is contained in:
Tmplt 2016-07-17 14:53:34 +02:00 committed by Adam Goldsmith
parent 37a648ac28
commit 6dbf5eda31
1 changed files with 11 additions and 0 deletions

View File

@ -72,6 +72,16 @@ prompt_context() {
fi
}
# Ranger: <https://github.com/ranger/ranger>, which can spawn ${SHELL}
# under its own process
prompt_ranger() {
if [[ $((RANGER_LEVEL)) -ne 0 ]]; then
local color=blue
prompt_segment ${color} ${PRIMARY_FG}
print -Pn " r"
fi
}
# Git: branch/detached head, dirty status
prompt_git() {
local color ref
@ -122,6 +132,7 @@ prompt_eriner_main() {
CURRENT_BG='NONE'
prompt_status
prompt_context
prompt_ranger
prompt_dir
prompt_git
prompt_end