From e76732b1703d0c23653272c0e1d97c2b84f75eda Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Sat, 7 Dec 2024 14:25:09 +0500 Subject: [PATCH] tmux rework --- home-manager/modules/tmux.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/home-manager/modules/tmux.nix b/home-manager/modules/tmux.nix index 154e482..e3a4334 100644 --- a/home-manager/modules/tmux.nix +++ b/home-manager/modules/tmux.nix @@ -37,17 +37,17 @@ ''; plugins = with pkgs; [ tmuxPlugins.gruvbox - # { - # plugin = tmuxPlugins.resurrect; - # extraConfig = "set -g @resurrect-strategy-nvim 'session'"; - # } - # { - # plugin = tmuxPlugins.continuum; - # extraConfig = '' - # set -g @continuum-restore 'on' - # set -g @continuum-save-interval '60' # minutes - # ''; - # } + { + plugin = tmuxPlugins.resurrect; + extraConfig = "set -g @resurrect-strategy-nvim 'session'"; + } + { + plugin = tmuxPlugins.continuum; + extraConfig = '' + set -g @continuum-restore 'on' + set -g @continuum-save-interval '60' # minutes + ''; + } ]; }; }