# Start window numbers at 1 to match keyboard order with tmux window order set-option -g base-index 1 set-option -g pane-base-index 1 # Renumber windows sequentially after closing any of them #set-option -g renumber-windows on #Commented out - it doesn't work with my tmux. #Perhaps tmux in Debian 7 is too old. # Attempt to set the client terminal title set-option -g set-titles on # Terminal emulator window title set -g set-titles-string 'tmux #S:#I.#P [ #W ]' # Pass [Ctrl]+[PgUp/PgDn] set-window-option -g xterm-keys on # Mouse set-window-option -g mode-mouse on set-option -g mouse-select-pane on set-option -g mouse-resize-pane on # Mouse can be used to select windows (by clicking in the status bar) set-option -g mouse-select-window on # Rather than constraining window size to the maximum size of any client # connected to the *session*, constrain window size to the maximum size of any # client connected to *that window*. Much more reasonable. set-window-option -g aggressive-resize on # Activity monitoring set-option -g visual-activity on set-window-option -g monitor-activity on # Soften status bar color from black on harsh green to black on cyan set-option -g status-fg black set-option -g status-bg cyan # Clock color set-window-option -g clock-mode-colour black # Increase scrollback lines set-option -g history-limit 1000 # C-b C-a for last-window bind-key C-a last-window # C-b R to reload config without restart bind-key R source-file ~/.tmux.conf