-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
33 lines (24 loc) · 868 Bytes
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
set -g mouse on
set -g scroll-on-clear off
set -g status off
# set -g detach-on-destroy off
set-option -sa terminal-overrides ',alacritty:RGB'
setw -g mode-keys vi
set -g status-keys vi
bind-key q kill-session
bind-key -T root C-H split-pane -v -c "#{pane_current_path}"
bind-key -T root C-J split-pane -h -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
bind-key -T root M-k select-pane -U
bind-key -T root M-j select-pane -D
bind-key -T root M-h select-pane -L
bind-key -T root M-l select-pane -R
bind-key -r -T root M-K resize-pane -U 2
bind-key -r -T root M-J resize-pane -D 2
bind-key -r -T root M-H resize-pane -L 3
bind-key -r -T root M-L resize-pane -R 3
set -g history-limit 20000
set-option -g renumber-windows on
set-option -g repeat-time 0
set-option -s escape-time 0