blob: 703e3b35b1570c9515404be739060da2d7b5da73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
set -g mouse on
set -g default-terminal "screen-256color"
set -g repeat-time 250
set -sg escape-time 0
set -g status-style bg=colour235,fg=colour249
set-window-option -g window-status-current-style fg=colour251,bright
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind -n C-S-Left swap-window -t -1
bind -n C-S-Right swap-window -t +1
|