diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:35:01 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:35:01 -0800 |
commit | aaad7275b69d38bce679198d90ed3641d4c2d48c (patch) | |
tree | c2ec2efb65837975967a0795899ab3eacff0c9c5 | |
parent | [emacs] Hopefully fix exec-shell thingy. (diff) | |
download | emacs.d-aaad7275b69d38bce679198d90ed3641d4c2d48c.tar.gz |
[tmux] Renumber window, and start from 1.
-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 |