Skip to content

Instantly share code, notes, and snippets.

@ourway
Created December 7, 2025 18:39
Show Gist options
  • Select an option

  • Save ourway/d25e16eac8c533f4fb8f902ba65e36a6 to your computer and use it in GitHub Desktop.

Select an option

Save ourway/d25e16eac8c533f4fb8f902ba65e36a6 to your computer and use it in GitHub Desktop.
# Minimal fast tmux config
set -g prefix C-a
unbind C-b
bind-key C-a last-window
set -s escape-time 0
set -g history-limit 50000
set -g base-index 1
set -g status-interval 60
set -g status-right '%H:%M'
# Vi keys
set-window-option -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key r source-file ~/.tmux.conf
# renumber windows when one is closed
set-option -g renumber-windows on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment