This commit is contained in:
DeveloperDurp 2025-02-28 17:59:44 -06:00
parent e1c96bc1d2
commit 317c7d208d
16 changed files with 699 additions and 255 deletions

View file

@ -11,6 +11,7 @@ set -g allow-passthrough on
set -ga update-environment TERM
set -ga update-environment TERM_PROGRAM
# Vim style pane selection
bind h select-pane -L
bind j select-pane -D
@ -28,18 +29,18 @@ set-option -g @ssh-split-keep-cwd "true"
set-option -g @ssh-split-keep-remote-cwd "true"
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left resize-pane -L 5
bind -n M-Right resize-pane -R 5
bind -n M-Up resize-pane -U 5
bind -n M-Down resize-pane -D 5
bind -n M-H resize-pane -L 5
bind -n M-L resize-pane -R 5
bind -n M-K resize-pane -U 5
bind -n M-J resize-pane -D 5
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window
#bind -n M-H previous-window
#bind -n M-L next-window
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'