From 792116f3db5a5aa851891b0c6b75ddaf6e3ae85b Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 26 Jun 2026 11:25:19 +0200 Subject: [PATCH] feat: try ctrl tab for switching to next window --- .tmux.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index 06f304d..16e8961 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -68,12 +68,15 @@ unbind % # reload config file (change file location to your the tmux.conf you want to use) bind r source-file ~/.tmux.conf -# switch panes using Alt-arrow without prefix +# switch panes using Ctrl + vim navigation bind -n C-h select-pane -L bind -n C-l select-pane -R bind -n C-j select-pane -U bind -n C-k select-pane -D +# switch windows using Ctrl + Tab +bind -n C-Tab next-window + # Enable mouse set -g mouse on