diff --git a/dotfiles/zshrc.sh b/dotfiles/zshrc.sh index 7b42735..9e701ce 100644 --- a/dotfiles/zshrc.sh +++ b/dotfiles/zshrc.sh @@ -5,6 +5,9 @@ export GJ_ENV=local_aptproxy # Path to your oh-my-zsh installation. export ZSH=$ZCFG/packages/oh-my-zsh +# virtualenvwrapper +export WORKON_HOME=$HOME/.virtualenvs + export LANG=en_US.UTF-8 # Compilation flags @@ -26,7 +29,7 @@ plugins+=(command-not-found common-aliases debian dirhistory history history-sub # virtualenvwrapper if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then - export WORKON_HOME=$HOME/.virtualenvs + # export WORKON_HOME=$HOME/.virtualenvs source /usr/local/bin/virtualenvwrapper.sh plugins+=(pip python virtualenv virtualenvwrapper) fi