-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
36 lines (31 loc) · 1.84 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
# default to zsh shell
set -g default-shell /bin/zsh
# fix escape delay
set -s escape-time 0
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'egel/tmux-gruvbox'
set -g @tmux-gruvbox 'dark' # or 'light'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
set-option -sa terminal-features ',xterm-256color:RGB'
# set -g mode-style "fg=#e4dcd4,bg=#643f61"
# set -g message-style "fg=#e4dcd4,bg=#643f61"
# set -g message-command-style "fg=#e4dcd4,bg=#643f61"
# set -g pane-border-style "fg=#643f61"
# set -g pane-active-border-style "fg=#2848a9"
# set -g status "on"
# set -g status-justify "left"
# set -g status-style "fg=#643f61,bg=#e4dcd4"
# set -g status-left-length "100"
# set -g status-right-length "100"
# set -g status-left-style NONE
# set -g status-right-style NONE
# set -g status-left "#[fg=#e4dcd4,bg=#2848a9,bold] #S #[fg=#2848a9,bg=#e4dcd4,nobold,nounderscore,noitalics]"
# set -g status-right "#[fg=#e4dcd4,bg=#e4dcd4,nobold,nounderscore,noitalics]#[fg=#2848a9,bg=#e4dcd4] #{prefix_highlight} #[fg=#643f61,bg=#e4dcd4,nobold,nounderscore,noitalics]#[fg=#e4dcd4,bg=#643f61] %Y-%m-%d %I:%M %p #[fg=#2848a9,bg=#643f61,nobold,nounderscore,noitalics]#[fg=#e4dcd4,bg=#2848a9,bold] #h "
# setw -g window-status-activity-style "underscore,fg=#824d5b,bg=#e4dcd4"
# setw -g window-status-separator ""
# setw -g window-status-style "NONE,fg=#824d5b,bg=#e4dcd4"
# setw -g window-status-format "#[fg=#e4dcd4,bg=#e4dcd4,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#e4dcd4,bg=#e4dcd4,nobold,nounderscore,noitalics]"
# setw -g window-status-current-format "#[fg=#e4dcd4,bg=#643f61,nobold,nounderscore,noitalics]#[fg=#e4dcd4,bg=#643f61,bold] #I #W #F #[fg=#643f61,bg=#e4dcd4,nobold,nounderscore,noitalics]"