From 4cee90d80f458693fe0ee2651c107d927bff78ae Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 2 Dec 2024 21:53:41 +0100 Subject: [PATCH] Tmux Config: set windows and panes to start at 1 not 0 --- Configs/Tmux/tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Configs/Tmux/tmux.conf b/Configs/Tmux/tmux.conf index 132d551..d7a308d 100644 --- a/Configs/Tmux/tmux.conf +++ b/Configs/Tmux/tmux.conf @@ -24,3 +24,9 @@ bind -n M-Down select-pane -D ##################################################################### set -g default-terminal "tmux-256color" set -ga terminal-overrides ",*256col*:Tc" + +##################################################################### +# Start windows and panes at 1, not 0 +##################################################################### +set -g base-index 1 +setw -g pane-base-index 1