Add .gradle/gradle.properties
[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
19 set -g visual-bell off
20
21 bind-key -n F5 prev
22 bind-key -n F6 select-pane -t :.+
23 bind-key -n F7 select-pane -t :.-
24 bind-key -n F8 next
25
26 set-window-option -g window-status-current-bg cyan
27 set-window-option -g window-status-current-fg black
28 #set-option -g status-utf8 on
29 set-option -g status-bg blue
30 set-option -g status-fg white
31 set-option -g status-interval 5
32 set-option -g visual-activity off 
33 set-window-option -g monitor-activity off
34