tmux.conf: Change panes using C-[hjkl]
Resizing is now M-[hjkl].
This commit is contained in:
parent
102ad7050d
commit
a994d98f0b
1 changed files with 8 additions and 4 deletions
12
tmux.conf
12
tmux.conf
|
@ -7,8 +7,12 @@ set -w -g window-status-current-fg colour39
|
||||||
set -w -g window-status-current-bg colour236
|
set -w -g window-status-current-bg colour236
|
||||||
set -w -g window-status-bell-fg colour233
|
set -w -g window-status-bell-fg colour233
|
||||||
set -w -g window-status-bell-bg colour124
|
set -w -g window-status-bell-bg colour124
|
||||||
bind -r C-h resize-pane -L
|
bind -r C-h select-pane -L
|
||||||
bind -r C-j resize-pane -D
|
bind -r C-j select-pane -D
|
||||||
bind -r C-k resize-pane -U
|
bind -r C-k select-pane -U
|
||||||
bind -r C-l resize-pane -R
|
bind -r C-l select-pane -R
|
||||||
|
bind -r M-h resize-pane -L
|
||||||
|
bind -r M-j resize-pane -D
|
||||||
|
bind -r M-k resize-pane -U
|
||||||
|
bind -r M-l resize-pane -R
|
||||||
set -ag terminal-overrides ",*:XT@"
|
set -ag terminal-overrides ",*:XT@"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue