commit 6382a75bc3157dc598e356ed520f155509aef940 from: Andre Mazzotti Bertachini date: Wed Jan 7 11:25:25 2026 UTC Tmux start counting from 1 commit - 4f61cd11fcdd3dc8f04fcd51cb3578c8d9007ead commit + 6382a75bc3157dc598e356ed520f155509aef940 blob - 5dc6e47f61380caac38bc91b6d2e4928a7c09841 blob + cf5a214f7f2dbdaa17d4bb17a59c45550a4af520 --- .config/tmux/tmux.conf +++ .config/tmux/tmux.conf @@ -1,16 +1,20 @@ +# Vim motions and C-a as prefix set-window-option -g mode-keys vi - unbind C-b set -g prefix C-a bind C-a send-prefix - -set -g default-terminal "${TERM}" -set-option -g terminal-overrides ",256col:RGB:XT" -set -g allow-passthrough on - bind-key h select-pane -L bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R +# Don't mess with colors +set -g default-terminal "${TERM}" +set-option -g terminal-overrides ",256col:RGB:XT" + +# Start from 1 +set -g base-index 1 +setw -g pane-base-index 1 + +# "Transparent" bar set-option -g status-style bg=default