From 2e698be9d8d7daf84a13d283e3cc8e4e73a70673 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sun, 20 Nov 2022 10:08:04 +0530 Subject: [PATCH] tmux: Start with base index as 1 Start numbering for panes and windows from 1, it is just convenient. --- tmux/.tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 3d2165d..91c836c 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -4,10 +4,10 @@ set-option -g prefix M-a bind-key M-a send-prefix # start with window 1 (instead of 0) -# set -g base-index 1 +set -g base-index 1 # start with pane 1 -# set -g pane-base-index 1 +set -g pane-base-index 1 # split panes using | and -, make sure they open in the same path bind | split-window -h -c "#{pane_current_path}"