From 3e5d947580b3ccd650df143627ee43533d2b11d8 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Fri, 5 Jan 2024 12:18:02 +0100 Subject: [PATCH] tmux panes indices start at 1 instead of 0 --- ansible/roles/tmux/files/tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/roles/tmux/files/tmux/tmux.conf b/ansible/roles/tmux/files/tmux/tmux.conf index 1b95d63..b983178 100644 --- a/ansible/roles/tmux/files/tmux/tmux.conf +++ b/ansible/roles/tmux/files/tmux/tmux.conf @@ -6,6 +6,9 @@ bind-key C-a send-prefix # Start windows at index 1 instead of 0 set -g base-index 1 +# Start panes at index 1 instead of 0 +set -g pane-base-index 1 + # VI-mode set-window-option -g mode-keys vi set-window-option -g status-keys vi