dotfiles/tmux/tmux.conf
2025-01-30 08:10:10 -06:00

21 lines
629 B
Bash

set -g base-index 1
setw -g pane-base-index 1
set-option -g renumber-windows on
set -g status-style bg=default
set -g status-right ""
set -g status-left ""
set -g window-status-format "#[fg=black]#I:#W"
set -g window-status-current-format "#[fg=cyan bold]#I:#W"
set-option -ga terminal-overrides ",xterm-256color:Tc"
bind -n M-1 select-window -t 1
bind -n M-2 select-window -t 2
bind -n M-3 select-window -t 3
bind -n M-4 select-window -t 4
bind -n M-5 select-window -t 5
bind -n M-6 select-window -t 6
bind -n M-7 select-window -t 7
bind -n M-8 select-window -t 8
bind -n M-9 select-window -t 9
bind -n M-0 select-window -t 0