#!/bin/zsh
# This hook is sourced after every virtualenv is activated.

if [[ -n "$TMUX" ]]; then
    tmux set-environment VIRTUAL_ENV $VIRTUAL_ENV
fi
