7 lines
151 B
Plaintext
7 lines
151 B
Plaintext
|
|
#!/bin/zsh
|
||
|
|
# This hook is sourced after every virtualenv is activated.
|
||
|
|
|
||
|
|
if [[ -n "$TMUX" ]]; then
|
||
|
|
tmux set-environment VIRTUAL_ENV $VIRTUAL_ENV
|
||
|
|
fi
|