From 69c97650f887d856a31135819d1a64466bac1340 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 10 Oct 2024 20:55:16 -0700 Subject: [PATCH] Configure SSH and k9s session restore --- .tmux.conf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index e8c12c0..85612fa 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -60,5 +60,12 @@ set -g status-interval 1 set-window-option -g window-status-style fg='#008b8b',bg=default set-window-option -g window-status-current-style fg='#222222',bg='#ad7fa8' +# Persist Between Reboots +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' +set -g @continuum-restore 'on' +set -g @continuum-boot 'on' +set -g @resurrect-processes 'ssh nano k9s' + # Load Plugins -#run '~/.tmux/plugins/tpm/tpm' +run '~/.tmux/plugins/tpm/tpm'