-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf
More file actions
22 lines (17 loc) · 865 Bytes
/
tmux.conf
File metadata and controls
22 lines (17 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'vaaleyard/tmux-dotbar'
# supposing you use catppuccin moccha
set -g @tmux-dotbar-bg "#0a0a0a" # Dark background (close to black)
set -g @tmux-dotbar-fg "#0d9488" # Darkest teal (inactive elements)
set -g @tmux-dotbar-fg-current "#2dd4bf" # Soft teal (current/active window)
set -g @tmux-dotbar-fg-session "#14b8a6" # Deep teal (session indicator)
set -g @tmux-dotbar-fg-prefix "#51ff51" # Bright lime green (prefix key active - energy accent)
# show the hostname on the right side
set -g @tmux-dotbar-right "true"
set -g @tmux-dotbar-status-right "#{user}@#h" # see code
# allows mouse scroll
set -g mouse on
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'