From 303bd567031bc7d2b6ed5a74ea7f6162bb52c796 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Thu, 20 Feb 2020 14:12:04 -0800 Subject: [PATCH] Hide default virtualenv prompt in bash We have a custom one --- assets/default/dotfiles/bash_profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/default/dotfiles/bash_profile b/assets/default/dotfiles/bash_profile index 5cf99fb..ead3e90 100644 --- a/assets/default/dotfiles/bash_profile +++ b/assets/default/dotfiles/bash_profile @@ -54,6 +54,9 @@ function ps_virtual_env { echo " [$venv]" } +# Disable standard virtualenv prompt +export VIRTUAL_ENV_DISABLE_PROMPT=1 + # Alias for colors # RED="\[\033[0;31m\]" YELLOW="\[\033[0;33m\]"