From d4cfdcafb576b4d32921c3d81ba11aa088c93cf8 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 26 Aug 2024 17:56:13 +0100 Subject: [PATCH] feat(.tmux.conf): add tmux-sessionx plugin for managing tmux sessions more efficiently --- .tmux.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index db22194..97a6df7 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -56,12 +56,16 @@ set -g @plugin 'christoomey/vim-tmux-navigator' set -g @plugin 'MunifTanjim/tmux-mode-indicator' set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @plugin 'tmux-plugins/tmux-continuum' - +set -g @plugin 'omerxx/tmux-sessionx' set -g @resurrect-dir "~/.tmux/resurrect" set -g @resurrect-capture-pane-contents 'on' +set -g @sessionx-bind 's' +set -g @sessionx-window-mode 'on' +set -g @sessionx-tree-mode 'off' + # for neovim set -g @resurrect-strategy-nvim 'session' set -g @continuum-restore 'on'