I only recently upgraded to the latest version of .tmux.conf, and found that the last two lines in PR #152 break the Tmux Plugin Manager (tpm) when it's loaded from within ~/.tmux.conf.local. The result is that this PR requires one to either move their tpm plugin configuration to .tmux.conf (which defeats the purpose of isolating user modications to .tmux.conf.local), or to change:
if-shell "! (env | grep -q TMUX=/tmp/tmate)" \
"source-file -q ~/.tmux.conf.local"
back to:
source-file -q ~/.tmux.conf.local
Any ideas on how to support both tmate and tpm?