Add support for showing custom pyvenv prompt

This commit is contained in:
Arti Zirk 2023-06-21 20:58:33 +03:00
parent b47f79401f
commit 5d3b5af7ed
1 changed files with 7 additions and 1 deletions

8
.zshrc
View File

@ -5,7 +5,13 @@ fpath=( ~/.config/zsh/functions $fpath)
# Virtualenv support
function _virtual_env_prompt () {
REPLY=${VIRTUAL_ENV+(${VIRTUAL_ENV:t}) }
# new pyvenv has a seperate variable for custom prompt value
REPLY=${VIRTUAL_ENV_PROMPT+${VIRTUAL_ENV_PROMPT}}
# support old-school virtualenv
if [[ -z "${REPLY}" ]]; then
REPLY=${VIRTUAL_ENV+(${VIRTUAL_ENV:t}) }
fi
}
grml_theme_add_token virtual-env -f _virtual_env_prompt '%F{magenta}' '%f'