dottmux/tmux.conf

24 lines
561 B
Plaintext
Raw Normal View History

2024-04-17 05:29:55 +00:00
bind-key r source-file "~/.tmux.conf"
2024-04-17 03:55:57 +00:00
2024-04-18 00:14:27 +00:00
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
2024-04-17 03:55:57 +00:00
2024-04-17 05:29:55 +00:00
bind-key s split-window
bind-key v split-window -h
2024-04-17 03:55:57 +00:00
2024-04-17 05:29:55 +00:00
set-option -g prefix C-q
bind-key C-q send-prefix
2024-04-17 03:55:57 +00:00
2024-04-17 05:29:55 +00:00
set-option -g mouse on
set-option -ga terminal-overrides ",*256col*:Tc"
set-option -g default-terminal "tmux-256color"