This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
81 lines (58 loc) · 1.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
#Change C-b to C-a; free up C-b
set -g prefix C-a
unbind-key C-b
#C-a C-a to get to the head
bind-key C-a send-prefix
#Move like VI
setw -g mode-keys vi
set-window-option -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
#r to source .tmux.conf
bind r source-file ~/.tmux.conf \; display "Reloaded!"
#Color things
set -g default-terminal "screen-256color"
#set -g pane-border-bg green
#set -g pane-border-fg yellow
#
#set -g pane-active-border-bg red
#set -g pane-active-border-fg black
set -g pane-border-bg black
set -g pane-border-fg green
set -g pane-active-border-bg yellow
set -g pane-active-border-fg white
set -g status-fg white
set -g status-bg black
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
set -g window-status-current-fg white
set -g window-status-current-bg red
set -g window-status-current-attr bright
set -g message-fg white
set -g message-bg black
set -g message-attr bright
# base 1
set -g base-index 1
setw -g pane-base-index 1
# % -> |
# " -> _
bind | split-window -h
bind _ split-window -v
#bind -r C-h select-window -t :-
#bind -r C-l select-window -t :+
bind -r H resize-pane -L 3
bind -r L resize-pane -R 3
bind -r K resize-pane -U 3
bind -r J resize-pane -D 3
# escape-time
set -sg escape-time 1
# status bar
set -g status-justify centre
set -g status-left "#[fg=green]Session: #[fg=white]#S #I #P"
set -g status-left-length 40
set -g status-right "#[fg=white]%d %b %R"
setw -g monitor-activity on
set -g visual-activity on