Tmux Config: set windows and panes to start at 1 not 0

This commit is contained in:
Aroy-Art 2024-12-02 21:53:41 +01:00
parent 7ece804f21
commit 4cee90d80f
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -24,3 +24,9 @@ bind -n M-Down select-pane -D
##################################################################### #####################################################################
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc" 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