-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
40 lines (29 loc) · 1005 Bytes
/
Copy path.tmux.conf
File metadata and controls
40 lines (29 loc) · 1005 Bytes
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
# Set options for correctly displaying colors
set-option -ga terminal-overrides ",xterm-256color:Tc"
set-option -g default-terminal "tmux-256color"
# Set mode keys to vim style
setw -g mode-keys vi
setw -g status-keys vi
# Enable mouse control (clickable windows, panes, resizable panes)
set -g mouse on
# Clock mode
setw -g clock-mode-colour white
# Copy mode
setw -g mode-style 'fg=black bg=white'
# Panes
set -g pane-border-style 'fg=white'
set -g pane-active-border-style 'fg=green'
# Statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=green'
set -g status-left-style 'fg=black bg=green'
set -g status-left " [#S] "
set -g status-right-style 'fg=black bg=green'
set -g status-right ' #{=21:pane_title} - %H:%M %d-%m-%Y '
set -g status-right-length 50
setw -g window-status-current-style 'fg=black bg=green'
setw -g window-status-current-format ' #I #W #F '
setw -g window-status-format ' #I #W #F'
# Messages
set -g message-style 'fg=black bg=green'