Adding tmux

This commit is contained in:
gerardo
2022-09-06 12:49:50 -05:00
parent 7bede13fe1
commit ed9aa84d9c
45 changed files with 2217 additions and 5 deletions

15
tmux/tmux.conf Normal file
View File

@ -0,0 +1,15 @@
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