mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
6 lines
131 B
Bash
6 lines
131 B
Bash
|
|
VW_SCRIPT=`which virtualenvwrapper.sh`
|
|
if [ -f $VW_SCRIPT ]; then
|
|
export WORKON_HOME="~/virtualenvs"
|
|
source $VW_SCRIPT
|
|
fi
|