blob: 54e496b26eb7332fb679317b6a5e8e2808074133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set -g history-limit 10000
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
bind-key | split-window -h
bind-key - split-window -v
bind j select-pane -D
bind k select-pane -U
bind h select-pane -L
bind l select-pane -R
#set -g status-bg magenta
set -g mouse on
|