c5a5e96 Config copy, i3 install git-subtree-dir: zsh git-subtree-split: c5a5e96260b46c32405229679110fb211f2d1fe4
17 lines
353 B
Plaintext
17 lines
353 B
Plaintext
export WORKON_HOME=~/python-envs
|
|
mkdir -p $WORKON_HOME
|
|
|
|
function workon() {
|
|
if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
|
|
if ! { [ -z "$1" ] } then
|
|
tmux setenv VIRTUAL_ENV "$1"
|
|
fi
|
|
source /usr/bin/virtualenvwrapper.sh
|
|
workon "$@"
|
|
fi
|
|
}
|
|
|
|
if [ -n "$VIRTUAL_ENV" ]; then
|
|
workon $VIRTUAL_ENV
|
|
fi
|