dot_config/.tmux.conf

18 lines
568 B
Plaintext
Raw Normal View History

2020-05-03 00:27:25 -04:00
set -g default-terminal 'screen-256color'
2020-09-11 23:48:33 -04:00
#attempt to navigate panes like vim
bind -r h select-pane -L # move left
bind -r j select-pane -D # move down
bind -r k select-pane -U # move up
bind -r l select-pane -R # move right
2021-06-07 21:09:58 -04:00
set -g mouse on
2020-12-04 21:20:54 -05:00
#plugin manager for install tmux-resurrect
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
2023-04-04 10:32:58 -04:00
set -g @plugin 'jimeh/tmux-themepack'
set -g @tmux-themepack 'powerline/default/cyan'
2020-12-04 21:20:54 -05:00
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
2023-04-04 10:32:58 -04:00