From 57129e809457dc9d5d45ebc435b0b8dab0a09916 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Thu, 31 Aug 2023 01:11:34 -0400 Subject: [PATCH] tmux: edit window indexes --- modules/cli/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/cli/default.nix b/modules/cli/default.nix index 33e8ece..fe26daa 100644 --- a/modules/cli/default.nix +++ b/modules/cli/default.nix @@ -114,6 +114,9 @@ in terminal = "screen-256color"; extraConfig = '' bind-key j command-prompt -p "Join pane:" "join-pane -s '%%'" + set -g base-index 1 + set -g pane-base-index 1 + set -g renumber-windows on ''; };