From b6b13881585578bb4c8fd7424c6b4d2dd5964503 Mon Sep 17 00:00:00 2001 From: Martin Toman Date: Wed, 26 Feb 2020 20:06:43 +0100 Subject: [PATCH] Add VIRTUALENV_SHOW_ENV_NAME=true to all configs --- config/p10k-classic.zsh | 2 ++ config/p10k-lean-8colors.zsh | 2 ++ config/p10k-lean.zsh | 2 ++ config/p10k-pure.zsh | 2 ++ config/p10k-rainbow.zsh | 2 ++ 5 files changed, 10 insertions(+) diff --git a/config/p10k-classic.zsh b/config/p10k-classic.zsh index 5cc6f4df..24c3f2e4 100644 --- a/config/p10k-classic.zsh +++ b/config/p10k-classic.zsh @@ -868,6 +868,8 @@ ###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]### # Python virtual environment color. typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=37 + # Show Python virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_ENV_NAME=true # Don't show Python version next to the virtual environment name. typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false # Separate environment name from Python version only with a space. diff --git a/config/p10k-lean-8colors.zsh b/config/p10k-lean-8colors.zsh index a3e16ddd..a3e4bd92 100644 --- a/config/p10k-lean-8colors.zsh +++ b/config/p10k-lean-8colors.zsh @@ -847,6 +847,8 @@ ###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]### # Python virtual environment color. typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=6 + # Show Python virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_ENV_NAME=true # Don't show Python version next to the virtual environment name. typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false # Separate environment name from Python version only with a space. diff --git a/config/p10k-lean.zsh b/config/p10k-lean.zsh index 4ed70ff1..5a3ace87 100644 --- a/config/p10k-lean.zsh +++ b/config/p10k-lean.zsh @@ -847,6 +847,8 @@ ###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]### # Python virtual environment color. typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=37 + # Show Python virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_ENV_NAME=true # Don't show Python version next to the virtual environment name. typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false # Separate environment name from Python version only with a space. diff --git a/config/p10k-pure.zsh b/config/p10k-pure.zsh index fcae29fc..b802fe82 100644 --- a/config/p10k-pure.zsh +++ b/config/p10k-pure.zsh @@ -90,6 +90,8 @@ # Grey Python Virtual Environment. typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=$grey + # Show Python virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_ENV_NAME=true # Don't show Python version. typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER= diff --git a/config/p10k-rainbow.zsh b/config/p10k-rainbow.zsh index 6d8c5e31..de900427 100644 --- a/config/p10k-rainbow.zsh +++ b/config/p10k-rainbow.zsh @@ -901,6 +901,8 @@ # Python virtual environment color. # typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=0 # typeset -g POWERLEVEL9K_VIRTUALENV_BACKGROUND=4 + # Show Python virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_ENV_NAME=true # Don't show Python version next to the virtual environment name. typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false # Separate environment name from Python version only with a space.