From 39177bd3706190f13b7e6eccc2046fd3c5de5b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20B=C3=BCchler?= Date: Fri, 8 Aug 2025 00:32:35 +0200 Subject: [PATCH] feat(tmux): add TPM plugin manager and Vim-Tmux-Navigator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Enables plugin management and future extensibility - Adds seamless navigation between vim splits and tmux panes - No changes to status bar or color scheme 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode --- .config/tmux/tmux.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index df52a93..537b0b3 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -59,3 +59,13 @@ bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -selection c # Start window numbering at 1 set -g base-index 1 setw -g pane-base-index 1 + +# --- TPM Plugin Manager --- +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tpm-sensible' + +# --- Vim-Tmux-Navigator --- +set -g @plugin 'christoomey/vim-tmux-navigator' + +# Initialize TPM +run '~/.tmux/plugins/tpm/tpm'