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