dottmux/tmux.conf

18 lines
391 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-17 05:29:55 +00:00
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key space 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"