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