change color blue+black -> blue+white

This commit is contained in:
HyundongHwang 2018-06-17 23:22:04 +09:00
commit 44b391a879

View file

@ -187,14 +187,14 @@ prompt_hg() {
# Dir: current working directory
prompt_dir() {
prompt_segment blue black '%~'
prompt_segment blue white '%~'
}
# Virtualenv: current working virtualenv
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
prompt_segment blue black "(`basename $virtualenv_path`)"
prompt_segment blue white "(`basename $virtualenv_path`)"
fi
}