dottmux/tmux.conf
2024-04-17 17:14:27 -07:00

24 lines
561 B
Plaintext

bind-key r source-file "~/.tmux.conf"
bind-key -n c-left select-pane -L
bind-key -n c-down select-pane -D
bind-key -n c-up select-pane -U
bind-key -n c-right select-pane -R
bind-key -n m-left resize-pane -L
bind-key -n m-down resize-pane -D
bind-key -n m-up resize-pane -U
bind-key -n m-right resize-pane -R
bind-key -n m-\; last-pane
bind-key s split-window
bind-key v split-window -h
set-option -g prefix C-q
bind-key C-q send-prefix
set-option -g mouse on
set-option -ga terminal-overrides ",*256col*:Tc"
set-option -g default-terminal "tmux-256color"