1
0
Fork 0
vdotfiles/dot_tmux.conf

29 lines
834 B
Text
Raw Normal View History

unbind C-b
2025-01-25 13:54:10 +02:00
bind C-g send-prefix
2018-07-14 14:55:12 +03:00
bind v split-window -h
bind s split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
bind y command-prompt break-pane
bind N new-session
2025-01-25 13:54:10 +02:00
bind m setw mouse
set -g terminal-overrides ",*:Tc"
set -g prefix C-g
2018-06-28 14:53:04 +03:00
set -g mode-keys "vi"
2016-04-28 15:44:37 +03:00
set -g escape-time "0"
set -g history-limit "10000"
2023-11-05 17:19:30 +02:00
set -g base-index "1"
setw -g pane-base-index "1"
2025-01-25 13:54:10 +02:00
setw -g mouse on
# newer options, not universally compatible
set -g update-environment "DISPLAY SSH_ASKPASS SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
bind r display "resize" \; switch-client -T resize
bind -T resize -r h resize-pane -L 5
bind -T resize -r j resize-pane -D 5
bind -T resize -r k resize-pane -U 5
bind -T resize -r l resize-pane -R 5