aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
diff options
context:
space:
mode:
authorYmage <heltem+git@o2php.com>2019-01-09 19:00:05 +0300
committerYmage <heltem+git@o2php.com>2019-01-09 19:00:05 +0300
commitee7416962d80dfaaed7efd57511d5aa568480d21 (patch)
treef99677328926af35424769be0680dfae980bf3c1 /powerlevel9k.zsh-theme
parent12e972486055dbb37279ef81ae4d2114e8221f19 (diff)
Remove $VIRTUAL_ENV_DISABLE_PROMPT testing
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-xpowerlevel9k.zsh-theme5
1 files changed, 1 insertions, 4 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index 472dd949..60c16b5a 100755
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -1652,10 +1652,7 @@ prompt_virtualenv() {
# Early exit; $virtualenv_path must always be set.
[[ -z "$virtualenv_path" ]] && return
- # Check if VIRTUAL_ENV_DISABLE_PROMPT is set to false, or is a numerical value
- if [[ "$VIRTUAL_ENV_DISABLE_PROMPT" == "false" ]] || (( VIRTUAL_ENV_DISABLE_PROMPT )); then
- "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON'
- fi
+ "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON'
}
################################################################