1export LC_ALL=en_US.UTF-8 2export LANG=en_US.UTF-8 3 4if pgrep tmux >/dev/null; then 5 if [ -z "$TMUX" ]; then 6 tmux attach 7 fi 8else 9 tmux 10fi 11 12# vim: sw=4 ts=4 sts=4 ai et ft=zsh 13