From 1d5655ad41c8f0d79038597383f65e2cadeb0f45 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Mon, 21 Apr 2025 22:55:05 +0500 Subject: [PATCH] fix tmux-continuum not launching, turn off resurrect of programs --- .config/tmux/tmux.conf | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index d952345..31766a5 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -26,17 +26,22 @@ setw -g pane-base-index 1 set -s escape-time 0 # List of plugins +# Note: In order to be executed periodically, the plugin updates the status-right tmux variable. +# In case some plugin (usually themes) overwrites the status-right variable, the autosave feature stops working. +# To fix this issue, place the plugin last in the TPM plugins list. set -g @tpm_plugins ' \ tmux-plugins/tpm \ tmux-plugins/tmux-sensible \ tmux-plugins/tmux-resurrect \ - tmux-plugins/tmux-continuum \ tmux-plugins/tmux-yank \ Nybkox/tmux-kanagawa \ + tmux-plugins/tmux-continuum \ ' set -g @continuum-restore 'on' -set -g @continuum-save-interval '60' +set -g @continuum-save-interval '30' + +set -g @resurrect-processes 'false' set -g @kanagawa-ignore-window-colors true