From 69f0d3252d9afc07795091e204cdbb7a0c99772c Mon Sep 17 00:00:00 2001 From: David Todd Date: Thu, 22 Jun 2017 12:21:44 -0500 Subject: [PATCH] Break up TPM install to more lines This will hopefully increase readability and not actually break everything --- tmux.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tmux.conf b/tmux.conf index 1b4fe46..232cdc3 100644 --- a/tmux.conf +++ b/tmux.conf @@ -60,7 +60,7 @@ bind-key w display-panes set -g history-limit 5000000 # Syncronizes keys typed in one pane across all panes, press again to disable -bind-key y setw synchronize-panes +bind-key y setw synchronize-panes ###################### ### DESIGN CHANGES ### @@ -176,7 +176,8 @@ set -g @continuum-restore 'on' # Install TPM if it does not exist if "test ! -d ~/.tmux/plugins/tpm" \ - "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'" + "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm" \ + "&& ~/.tmux/plugins/tpm/bin/install_plugins'" # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm'