-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
106 lines (93 loc) · 1.96 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
#Setting the prefix from C-b to C-q
#
unbind C-b
set -g prefix C-q
#Setting the delay between prefix and command
set -sg escape-time 1
#Set the base index for windows to 1 instead of 0
set -g base-index 1
#Set the base index for panes to 1 instead of 0
setw -g pane-base-index 1
#
#Splitting panes
bind \ split-window -h
bind - split-window -v
#
#Remapping movement keys
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 :+
#
#Resizing panes
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
#
#Handling the mouse
setw -g mode-mouse off
set -g mouse-select-pane off
set -g mouse-resize-pane off
set -g mouse-select-window off
#
#Appearence
#
set -g default-terminal "screen-256color"
#
#Status bar:
set -g status-fg white
set -g status-bg colour235
#
#Default window:
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
#
#Active window:
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
#
#Pane dividers:
set -g pane-border-fg white
set -g pane-border-bg black
#
set -g pane-active-border-fg green
set -g pane-active-border-bg colour233
#
#Command line:
set -g message-fg white
set -g message-bg black
set -g message-attr bright
#
#Status line left side
set -g status-left-length 60
set -g status-left-fg green
set -g status-left-bg colour236
set -g status-left " [#S] "
#
# Status line right side
set -g status-right-fg white
set -g status-right-bg colour238
set -g status-right " %d-%b %R "
#
#Activity monitor:
setw -g monitor-activity on
set -g visual-activity on
#
#Enable vi keys.
setw -g mode-keys vi
#
bind-key -t vi-edit Up history-up
bind-key -t vi-edit Down history-down
#unbind [
#bind Escape copy-mode
#unbind p
#bind p paste-buffer
#bind -t vi-copy 'v' begin-selection
#bind -t vi-copy 'y' copy-selection