From c45d1ff108a14d89943bc8dcd068e64563a9e16f Mon Sep 17 00:00:00 2001 From: Brian Pooe Date: Mon, 6 Jul 2026 21:18:57 +0200 Subject: [PATCH] feat: enable tmux session auto-restore on server start Resurrect + continuum were already saving every 15 minutes; this makes sessions come back automatically after a reboot. Co-Authored-By: Claude Fable 5 --- .config/tmux/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index ea26177..1e64677 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -73,9 +73,9 @@ if-shell '[ -f ~/.cache/dotfiles/tmux-theme.conf ]' \ 'source-file ~/.cache/dotfiles/tmux-theme.conf' \ 'source-file ~/.config/tmux/dragon-theme.conf' -# Resurrect +# Resurrect + continuum: auto-save every 15 min and restore on server start. set -g @resurrect-capture-pane-contents 'on' -# set -g @continuum-restore 'on' +set -g @continuum-restore 'on' # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm'