Add continum tmux ressurect

This commit is contained in:
Sebastian Bugge 2023-02-09 15:53:25 +01:00
parent c11ba09a36
commit d046cfbc6c
No known key found for this signature in database
GPG key ID: 49D435DEDD6B2829

View file

@ -12,6 +12,8 @@ unbind %
# reload config file (change file location to your the tmux.conf you want to use) # reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf \; display 'Reloaded tmux config!' bind r source-file ~/.tmux.conf \; display 'Reloaded tmux config!'
# switch panes using Alt-arrow without prefix # switch panes using Alt-arrow without prefix
set -s escape-time 0 # Disable esc=alt set -s escape-time 0 # Disable esc=alt
bind -n M-h select-pane -L bind -n M-h select-pane -L
@ -69,9 +71,12 @@ set -g message-style 'bold'
### /DESIGN CHANGES ### ### /DESIGN CHANGES ###
####################### #######################
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Plugin manager
# If plugin installation does not work, run $TPM/bin/install_plugins
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
# If plugin installation does not work, run $TPM/bin/install_plugins
run '~/.tmux/plugins/tpm/tpm' run '~/.tmux/plugins/tpm/tpm'