From 44b391a879cb583e22f7e83bbbc5033a0526fc42 Mon Sep 17 00:00:00 2001 From: HyundongHwang Date: Sun, 17 Jun 2018 23:22:04 +0900 Subject: [PATCH] change color blue+black -> blue+white --- themes/agnoster.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index b0a794f4d..381a77128 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -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 }