From b80a00b88c66670a41d00bc1b50fe3567e3183f1 Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 14 Jul 2023 18:07:44 -0700 Subject: [PATCH] Added TPM to tmux config --- tmux/.tmux.conf | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 87c1b75..0b84336 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -4,8 +4,8 @@ set-option -g prefix C-w bind-key C-w send-prefix # Vim window split commands -bind v split-window -h -bind s split-window -v +bind v split-window -h -c "#{pane_current_path}" +bind s split-window -v -c "#{pane_current_path}" unbind '"' unbind % @@ -37,3 +37,16 @@ unbind x # Disable auto renaming panes set -g allow-rename off + +# Tmux Plugin Manager (TPM) +# To install plugins open tmux and type Prefix+I +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'erikw/tmux-powerline' + +# Install tmux themes +set -g @plugin 'wfxr/tmux-power' +set -g @tmux_power_theme 'snow' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/.tmux/plugins/tpm/tpm'