Browse Source

Add support for showing custom pyvenv prompt

master
Arti Zirk 1 year ago
parent
commit
5d3b5af7ed
  1. 8
      .zshrc

8
.zshrc

@ -5,7 +5,13 @@ fpath=( ~/.config/zsh/functions $fpath)
# Virtualenv support # Virtualenv support
function _virtual_env_prompt () { 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' grml_theme_add_token virtual-env -f _virtual_env_prompt '%F{magenta}' '%f'

Loading…
Cancel
Save