dotfiles/tmux/tmux.conf
2022-09-06 12:49:50 -05:00

16 lines
348 B
Bash

set -g default-terminal "screen-256color"
set -g @plugin 'odedlaz/tmux-onedark-theme'
run '~/.tmux/plugins/tpm/tpm'
# VIM Like panel traversal and copypaste
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind H resize-pane -L 10
bind J resize-pane -D 10
bind K resize-pane -U 10
bind L resize-pane -R 10