diff options
author | Matt Singleton <matt@xcolour.net> | 2014-02-08 01:02:37 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2014-02-08 01:02:37 -0500 |
commit | f195043fb50ccfa7bb73f58b22b155a83e7598a9 (patch) | |
tree | 8a38957b04b0c3faea538fe7ec2fa188bb8ef852 /zsh | |
parent | 25ff4f99627895ae30e20a0c5df030f45b3bda0d (diff) |
faster virtualenvwrapper initialization
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/behavior.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/behavior.zsh b/zsh/behavior.zsh index 82f31f1..d9362d0 100644 --- a/zsh/behavior.zsh +++ b/zsh/behavior.zsh @@ -39,5 +39,5 @@ esac if [ -e /usr/local/bin/virtualenvwrapper.sh ]; then export VIRTUAL_ENV_DISABLE_PROMPT=true export WORKON_HOME=~/.virtualenv/envs - source /usr/local/bin/virtualenvwrapper.sh + source /usr/local/bin/virtualenvwrapper_lazy.sh fi |