From b0334c5e5b92d35853309dc0c2b5b68abf549358 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sun, 10 Dec 2017 12:19:05 +0000 Subject: [PATCH] name windows from inex 1 not 0 --- tmux | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tmux b/tmux index 17d78c0..f700df6 100644 --- a/tmux +++ b/tmux @@ -3,8 +3,14 @@ unbind C-b set-option -g prefix C-a bind-key C-a send-prefix +# start with window 1 (instead of 0) +set -g base-index 1 + # reload config file (change file location to your the tmux.conf you want to use) bind r source-file ~/.tmux.conf # Enable mouse mode (tmux 2.1 and above) set -g mouse on + +# don't rename windows automatically +set-option -g allow-rename off