-
Notifications
You must be signed in to change notification settings - Fork 36
/
.tmux.conf
61 lines (48 loc) · 1.43 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
#
# tmux configuration file
#
# intuitive splitting
bind | split-window -h
bind - split-window -v
bind _ split-window -v
#reload this file
bind R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded!"
bind / command-prompt -p "man" "split-window -h 'man %%'"
bind S command-prompt -p "ssh" "new-window -n %1 'exec ssh %1'"
bind h split-window -h "man tmux"
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g history-limit 9999
# Terminal emulator window title
set -g set-titles on
set -g set-titles-string '#S:#I.#P #W'
# notifications
setw -g monitor-activity on
setw -g visual-activity on
# auto rename
setw -g automatic-rename on
# Clock
setw -g clock-mode-colour green
setw -g clock-mode-style 24
# Window status colours
setw -g window-status-bg colour235
setw -g window-status-fg colour248
setw -g window-status-alert-attr underscore
setw -g window-status-alert-bg colour235
setw -g window-status-alert-fg colour248
setw -g window-status-current-attr bright
setw -g window-status-current-bg colour235
setw -g window-status-current-fg colour248
# Message colours
set -g message-bg colour240
set -g message-fg yellow
set -g message-attr bright
# Minimalistic Status Bar
set -g status-bg colour235
set -g status-fg colour248
set -g status-interval 1
set -g status-left '[#H]'
set -g status-right ''
set -g pane-border-fg white
set -g pane-border-bg default
set -g pane-active-border-fg white
set -g pane-active-border-bg default