30 lines
820 B
Bash
30 lines
820 B
Bash
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
|
|
# Colors
|
|
set -g @bg "#1A212E"
|
|
set -g @fg "#93A4C3"
|
|
set -g @green "#8BCD5B"
|
|
set -g @orange "#DD9046"
|
|
set -g @red "#F65866"
|
|
|
|
# Status bar
|
|
set -g status-position bottom
|
|
set -g status-justify left
|
|
set -g status-style 'fg=#{@green} bg=#{@bg}'
|
|
|
|
set -g status-right-style 'fg=#{@bg} bg=#{@orange} bold'
|
|
set -g status-right ' %Y-%m-%d %H:%M:%S '
|
|
set -g status-interval 1
|
|
|
|
setw -g window-status-current-style 'fg=#{@bg} bg=#{@green}'
|
|
setw -g window-status-current-format ' #I #W #F '
|
|
|
|
setw -g window-status-style 'fg=#{@green} bg=#{@bg}'
|
|
setw -g window-status-format ' #I #[fg=#{@fg}]#W #[fg=#{@orange}]#F '
|
|
|
|
setw -g window-status-bell-style 'fg=#{@orange} bg=#{@red} bold'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|