You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Thoughtbot's dotfiles to manage all my dotfiles. All of the default configs from their dotfiles look for and source a local version. So at the bottom of .tmux.conf there is
# Local config
if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local'
Adding the plugins and run ~/.tmux/plugins/tpm/tpm inside of .tmux.conf.local does not work. The install says it's complete and to hit Enter but hitting Enter does nothing. The plugins don't get downloaded at all.
The text was updated successfully, but these errors were encountered:
@bruno- I'm not sure it's feasible to support the if-shell pattern. The way I see things, it means tpm should understand that the if-shell line really corresponds to "if the file exists, then source it" which can be expressed in so many different ways. That's why I wanted tpm to support source -q in the first place, which is the way to go since tmux 2.3 for that exact need.
I use Thoughtbot's dotfiles to manage all my dotfiles. All of the default configs from their dotfiles look for and source a local version. So at the bottom of
.tmux.conf
there isAdding the plugins and
run ~/.tmux/plugins/tpm/tpm
inside of.tmux.conf.local
does not work. The install says it's complete and to hit Enter but hitting Enter does nothing. The plugins don't get downloaded at all.The text was updated successfully, but these errors were encountered: