diff options
author | Josselin Auguste <jauguste@iblop.net> | 2018-11-18 00:52:06 +0300 |
---|---|---|
committer | Josselin Auguste <jauguste@iblop.net> | 2018-11-18 21:54:03 +0300 |
commit | 5c412b4d420a2226cbf8af4ab38c61154df858e4 (patch) | |
tree | d666b8f5f9d661549ecd7c51edce3521ecde7128 /powerlevel9k.zsh-theme | |
parent | 724781e89681d2f34bd3760ef710a58a093b5595 (diff) |
Update VIRTUAL_ENV_DISABLE_PROMPT value
Following prezto update
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 7077bfc8..79237385 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1648,7 +1648,7 @@ prompt_vi_mode() { # https://virtualenv.pypa.io/en/latest/ prompt_virtualenv() { local virtualenv_path="$VIRTUAL_ENV" - if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then + if [[ -n "$virtualenv_path" && -z "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON' fi } |