16 lines
381 B
Bash
16 lines
381 B
Bash
set -g default-terminal "screen-256color"
|
|
set -g @plugin 'odedlaz/tmux-onedark-theme'
|
|
set-option -g history-limit 10000
|
|
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
|
|
|