-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
44 lines (34 loc) · 1.07 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
# set -g window-status-current-style 'bg=red'
# set -g window-status-separator '|'
# set -g window-status-style 'bg=blue'
# set -g status-style 'bg=red'
####################################################
# Enable mouse mode
# set -g mouse on
# Set status bar
set -g status on
set -g status-interval 15
set -g status-bg colour235
set -g status-fg colour136
set -g status-left-length 30
set -g status-right-length 150
set -g status-right '#[fg=cyan]%d-%m-%Y %I:%M %p #[fg=green]'
# Window and pane colors
setw -g window-status-current-style fg=yellow,bold
setw -g window-status-style fg=blue,bold
# Pane border
setw -g pane-border-style fg=default
setw -g pane-active-border-style fg=yellow
# Message colors
set -g message-style bg=black,fg=yellow
# Pane numbers display
setw -g display-panes-active-colour yellow
setw -g display-panes-colour blue
# Clock mode colors
setw -g clock-mode-colour green
setw -g clock-mode-style 12
# Start window from index 1
set -g base-index 1
setw -g pane-base-index 1
# Reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded!"