mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-22 08:20:59 +02:00
Add support for showing custom pyvenv prompt
This commit is contained in:
parent
b47f79401f
commit
5d3b5af7ed
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…
Reference in New Issue
Block a user