mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-31 22:56:48 +00:00
Add better support for pyenv virtualenvs
This commit is contained in:
parent
723b3812e1
commit
1050a0a290
@ -35,15 +35,20 @@ if (( ! $+commands[python] && ! $+commands[pyenv] )); then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Load virtualenvwrapper into the shell session, unless requested not to
|
# Load virtualenvwrapper into the shell session, unless requested not to
|
||||||
zstyle -t ':prezto:module:python' skip-virtualenvwrapper-init
|
if zstyle -T ':prezto:module:python' skip-virtualenvwrapper-init; then
|
||||||
if (( $? && $+commands[virtualenvwrapper.sh] )); then
|
|
||||||
# Set the directory where virtual environments are stored.
|
# Set the directory where virtual environments are stored.
|
||||||
export WORKON_HOME="${WORKON_HOME:-$HOME/.virtualenvs}"
|
export WORKON_HOME="${WORKON_HOME:-$HOME/.virtualenvs}"
|
||||||
|
|
||||||
# Disable the virtualenv prompt.
|
# Disable the virtualenv prompt.
|
||||||
VIRTUAL_ENV_DISABLE_PROMPT=1
|
VIRTUAL_ENV_DISABLE_PROMPT=1
|
||||||
|
|
||||||
|
if (( $+commands[pyenv-virtualenvwrapper] )); then
|
||||||
|
pyenv virtualenvwrapper
|
||||||
|
elif (( $+commands[pyenv-virtualenv-init] )); then
|
||||||
|
eval "$(pyenv virtualenv-init -)"
|
||||||
|
elif (( $+commands[virtualenvwrapper.sh] )); then
|
||||||
source "$commands[virtualenvwrapper.sh]"
|
source "$commands[virtualenvwrapper.sh]"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Load PIP completion.
|
# Load PIP completion.
|
||||||
|
Loading…
Reference in New Issue
Block a user