466e9a1cfc1646fc4c6d08d75b10669b5b30b098
[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 off # disable mouse
16 #set -g mouse-select-pane off
17 set -g default-terminal "screen-256color"
18 set -as terminal-overrides ",*:Tc"
19
20 set -g visual-bell off
21
22 bind-key -n F5 prev
23 bind-key -n F6 select-pane -t :.+
24 bind-key -n F7 select-pane -t :.-
25 bind-key -n F8 next
26
27 set-window-option -g window-status-current-bg cyan
28 set-window-option -g window-status-current-fg black
29 #set-option -g status-utf8 on
30 set-option -g status-bg blue
31 set-option -g status-fg white
32 set-option -g status-interval 5
33 set-option -g visual-activity off 
34 set-window-option -g monitor-activity off
35