15 lines
397 B
Bash
15 lines
397 B
Bash
# remap prefix
|
|
unbind C-b
|
|
set-option -g prefix `
|
|
bind-key ` send-prefix
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
set -g @continuum-restore 'on'
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
run-shell ~/clone/path/resurrect.tmux
|
|
|