diff options
-rw-r--r-- | tmux.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf index ea2d56b..f0740a4 100644 --- a/tmux.conf +++ b/tmux.conf @@ -30,3 +30,12 @@ bind -r J resize-pane -D 2 bind -r K resize-pane -U 2 bind i display-panes + +# renumber window +set-option -g renumber-windows on + +# don't rename the window +set-option -g allow-rename off + +# start at 1 +set-option -g base-index 1 |