-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
38 lines (31 loc) · 1.04 KB
/
tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
set -g set-titles on
# vi feel
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind n next-window
bind N previous-window
#fix problem in ghci
#http://trac.haskell.org/haskeline/wiki/UsingTmux
set -s escape-time 0
###########
# COLORS! #
###########
# default statusbar colors
set-option -g status-bg colour8 #darkgray
set-option -g status-fg colour6 #darkcyan
set-window-option -g window-status-fg colour7 #lightgray
set-window-option -g window-status-bg default
set-window-option -g window-status-current-fg colour14 #cyan
set-window-option -g window-status-current-bg default
set-option -g pane-border-fg colour8
set-option -g pane-active-border-fg colour8
set-option -g message-bg colour5 #darmagenta
set-option -g message-fg colour15 #white
set-option -g display-panes-active-colour colour5
set-option -g display-panes-colour colour5
set-option -g default-shell /bin/zsh
# http://superuser.com/questions/456798/tmux-slow-to-interrupt-process-with-ctrl-c
setw -g c0-change-trigger 10
setw -g c0-change-interval 250