From 29bba845947a2ef251ba54aa95c3fe3346588f82 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 20 Dec 2016 16:34:55 +0100 Subject: [PATCH] Disable default virtualenv prompt. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 1406abf..0bd4ec9 100644 --- a/install.sh +++ b/install.sh @@ -46,7 +46,8 @@ mkdir -p ~/.config/fish/functions echo 'function fish_greeting; end' > ~/.config/fish/functions/fish_greeting.fish echo 'function fish_right_prompt; end' > ~/.config/fish/functions/fish_right_prompt.fish touch ~/.fish.local -echo 'set -g theme_title_use_abbreviated_path no' > ~/.config/fish/config.fish +echo 'set -x VIRTUAL_ENV_DISABLE_PROMPT 1' > ~/.config/fish/config.fish +echo 'set -g theme_title_use_abbreviated_path no' >> ~/.config/fish/config.fish if [ `hostname` != 'tuonela' ]; then echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish fi