blob: 7c46e6a8247ff652c4fa1ec4c21abba16e47edfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
unbind r
bind r source-file ~/.config/tmux/tmux.conf
set -g mouse on
# allows to use vim bindings in scroll mode - key [
set-window-option -g mode-keys vi
# switch between panes using vim binds
unbind C-S-h
unbind C-S-l
bind-key -n C-S-h select-pane -L
bind-key -n C-S-j select-pane -D
bind-key -n C-S-k select-pane -U
bind-key -n C-S-l select-pane -R
|