-
Notifications
You must be signed in to change notification settings - Fork 1
/
.tmux.conf
53 lines (38 loc) · 1.33 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
# default statusbar colors
set -g status-style bg=colour235,fg=colour6
# default window title colors
setw -g window-status-style bg=default,fg=colour15
# active window title colors
setw -g window-status-current-style bg=default,fg=red
# pane border
set -g pane-border-style fg=colour8
set -g pane-active-border-style fg=green
# message text
set -g message-style bg=colour235,fg=red
# modes
setw -g mode-style bg=colour11,fg=colour13,bold
# pane number display
set -g display-panes-active-colour green
set -g display-panes-colour blue
# clock
setw -g clock-mode-colour blue
# bell
# set-window-option -g window-status-bell-style fg=colour235,bg=colour160
# #base02, red
# https://github.com/tmux/tmux/issues/1246
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc"
set-option -g status-position top
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'odedlaz/tmux-onedark-theme'
set -g @plugin 'edouard-lopez/tmux-tomorrow'
# Initialize TMUX plugin manager (keep this line at the very bottom of # tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
# setting for tmux theme
# set -g @onedark_widgets ""
source-file ~/.tmux/plugins/tmux-tomorrow/tomorrow.tmux
bind-key O set-option -g status #Ctrl+F3 Combo
# Start windows and panes at 1, not 0
set -g base-index 1
setw -g pane-base-index 1