-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
68 lines (57 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# shorter delay after key stroke
set -sg escape-time 1
# scrollback size
set -g history-limit 10000
# vim-like Pane movement
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
# vim-like Pane resize
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
## elable mouse
set -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
# use color terminal
set -g default-terminal "screen-256color"
###########################################################################
# Color scheme (Cobalt)
# default statusbar colors
set-option -g status-fg white
set-option -g status-bg blue
# active window title colors
set-window-option -g window-status-current-fg red
set-window-option -g window-status-current-bg yellow
# pane border
set-option -g pane-border-fg cyan
set-option -g pane-active-border-fg red
# pane number display
set-option -g display-panes-active-colour red
set-option -g display-panes-colour cyan
###########################################################################
## Status bar color
#set -g status-fg white
#set -g status-bg black
#
## Window status color
#setw -g window-status-fg cyan
#setw -g window-status-bg default
#setw -g window-status-attr dim
## Active window color
#setw -g window-status-current-fg white
#setw -g window-status-current-bg red
#setw -g window-status-current-attr bright
#
## Pane border color
#set -g pane-border-fg green
#set -g pane-border-bg black
## Active pane border color
#set -g pane-active-border-fg white
#set -g pane-active-border-bg yellow