2025-07-16 09:55:20 -07:00
|
|
|
set-option -g default-command fish
|
|
|
|
|
|
|
|
|
|
bind-key h select-pane -L
|
|
|
|
|
bind-key j select-pane -D
|
|
|
|
|
bind-key k select-pane -U
|
|
|
|
|
bind-key l select-pane -R
|
|
|
|
|
|
|
|
|
|
# nested tmux, obey me
|
|
|
|
|
bind-key a send-prefix
|
|
|
|
|
|
|
|
|
|
# Avoid the annoying bit of delay when using the control character
|
|
|
|
|
set -g escape-time 0
|
|
|
|
|
set -g renumber-windows on
|
|
|
|
|
|
|
|
|
|
# Show a visual bell, even on other windows
|
|
|
|
|
set-window-option -g visual-bell both
|
|
|
|
|
set-window-option -g bell-action other
|
|
|
|
|
|
|
|
|
|
# Set up the window visuals
|
|
|
|
|
set -g window-status-style bg=yellow
|
|
|
|
|
set -g window-status-current-style bg=red,fg=white
|
|
|
|
|
|
2026-05-08 23:25:58 +00:00
|
|
|
# Set up modifier keys so that Shift+Enter and Ctrl+Enter are distinguishable
|
|
|
|
|
# based on https://github.com/earendil-works/pi/blob/main/packages/coding-agent/docs/tmux.md
|
|
|
|
|
set -g extended-keys on
|
|
|
|
|
set -g extended-keys-format csi-u
|