From 9daeba47ea4ff5b824ce7489b87b43eab7715a0d Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Wed, 4 Jan 2023 13:11:51 +0100 Subject: [PATCH] tmux: Number windows with 1-based indices It is counter intuitive to have to reach to the right for the first window. --- .config/tmux/tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 293c482..f36088e 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -59,6 +59,8 @@ bind F resizep -Z # Automatically renumber windows when closing one set -g renumber-windows on +# Number windows with 1-based indices +set -g base-index 1 # Enter copy-mode and scroll one page up directly with PageUp without the need # of the prefix. (Exists already per default with prefix)