22 lines
450 B
Text
22 lines
450 B
Text
|
set -g status-keys vi
|
||
|
setw -g mode-keys vi
|
||
|
|
||
|
set -g prefix C-a
|
||
|
unbind C-b
|
||
|
bind C-a send-prefix
|
||
|
|
||
|
# smart pane switching with awareness of vim splits
|
||
|
bind h select-pane -L
|
||
|
bind j select-pane -D
|
||
|
bind k select-pane -U
|
||
|
bind l select-pane -R
|
||
|
|
||
|
# split panes using | and -
|
||
|
bind | split-window -h -c "#{pane_current_path}"
|
||
|
bind - split-window -v -c "#{pane_current_path}"
|
||
|
unbind '"'
|
||
|
unbind %
|
||
|
|
||
|
# Set default term to xterm
|
||
|
set -g default-terminal xterm-256color
|