.tmux.conf: fix mixup
[cmccabe-etc] / .tmux.conf
1 # turn off esc-wait so that vi works correctly
2 set-option -sg  escape-time 0
3
4 # use control-K as the prefix
5 set -g prefix C-k
6 unbind C-b
7 bind C-k send-prefix
8
9 set-option -g history-limit 100000
10 set-window-option -g xterm-keys on
11
12 set-window-option -g mode-keys vi
13 set-option -g status-keys vi
14 set-window-option -g utf8 on
15 set-window-option -g mode-mouse on # enable mouse
16 set -g default-terminal "screen-256color"
17
18 set -g visual-bell off
19
20 bind-key -n F5 prev
21 bind-key -n F6 select-pane -t :.+
22 bind-key -n F7 select-pane -t :.-
23 bind-key -n F8 next
24
25 set-option -g status-utf8 on
26 set-option -g status-bg blue
27 set-option -g status-fg white
28 set-option -g status-interval 5
29 set-option -g visual-activity off 
30 set-window-option -g monitor-activity on
31 set-window-option -g window-status-current-fg cyan
32