Tmux Config: set windows and panes to start at 1 not 0
This commit is contained in:
parent
7ece804f21
commit
4cee90d80f
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue