21 lines
428 B
Bash
21 lines
428 B
Bash
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
|
|
unbind-key '"'
|
|
unbind-key %
|
|
bind-key | split-window -h -c "#{pane_current_path}"
|
|
bind-key - split-window -v -c "#{pane_current_path}"
|
|
|
|
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 -r H resize-pane -L 5
|
|
bind-key -r J resize-pane -D 5
|
|
bind-key -r K resize-pane -U 5
|
|
bind-key -r L resize-pane -R 5
|
|
|
|
|
|
|