diff options
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/tmux.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 6503def..fd9e737 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -38,8 +38,15 @@ set -g @plugin 'tmux-plugins/tmux-yank' set -g @plugin 'christoomey/vim-tmux-navigator' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' + run '~/.tmux/plugins/tpm/tpm' +# Continuum settings (optional, but recommended for automatic saving) +set -g @continuum-restore 'on' # Automatically restore sessions on tmux start +set -g @continuum-save-interval '15' # Save every 15 minutes (adjust as needed) + set -g mouse on unbind C-b |