feat(tmux): use nova theme

This commit is contained in:
ayo 2026-06-24 18:49:11 +02:00
parent 6e74852524
commit f53c241ae4

View file

@ -1,16 +1,46 @@
# IMPORTANT: To apply plugins, while on tmux press: <prefix>, I # IMPORTANT:
# - To apply plugins, while on tmux press: <prefix>, I
# - Install Nerd Fonts
# List of plugins # List of plugins
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
# Solarized theme # Nova theme
#set -g @plugin 'seebi/tmux-colors-solarized' set -g @plugin 'o0th/tmux-nova'
#set -g @colors-solarized 'light'
set -g @plugin "janoamaral/tokyo-night-tmux" set -g @nova-nerdfonts true
set -g @tokyo-night-tmux_theme moon # night (default) | storm | moon | day set -g @nova-nerdfonts-left 
set -g @tokyo-night-tmux_transparent 1 # transparent background set -g @nova-nerdfonts-right 
set -g @nova-pane-active-border-style "#44475a"
set -g @nova-pane-border-style "#282a36"
set -g @nova-status-style-bg "#4c566a"
set -g @nova-status-style-fg "#d8dee9"
set -g @nova-status-style-active-bg "#89c0d0"
set -g @nova-status-style-active-fg "#2e3540"
set -g @nova-status-style-double-bg "#2d3540"
set -g @nova-pane "#I#{?pane_in_mode,  #{pane_mode},}  #W"
set -g @nova-segment-mode "#{?client_prefix,Ω,ω}"
set -g @nova-segment-mode-colors "#78a2c1 #2e3440"
set -g @nova-segment-whoami "#(whoami)@#h"
set -g @nova-segment-whoami-colors "#78a2c1 #2e3440"
set -g @nova-rows 0
set -g @nova-segments-0-left "mode"
set -g @nova-segments-0-right "whoami"
# Solarized theme
# set -g @plugin 'seebi/tmux-colors-solarized'
# set -g @colors-solarized 'dark'
# Tokyo Night theme
# set -g @plugin "janoamaral/tokyo-night-tmux"
# set -g @tokyo-night-tmux_theme moon # night (default) | storm | moon | day
# set -g @tokyo-night-tmux_transparent 1 # transparent background
# set -g @tokyo-night-tmux_show_git 1 # local git status # set -g @tokyo-night-tmux_show_git 1 # local git status
# set -g @tokyo-night-tmux_show_wbg 1 # GitHub / GitLab stats # set -g @tokyo-night-tmux_show_wbg 1 # GitHub / GitLab stats
# set -g @tokyo-night-tmux_show_netspeed 1 # network speed # set -g @tokyo-night-tmux_show_netspeed 1 # network speed
@ -46,3 +76,6 @@ bind -n C-k select-pane -D
# Enable mouse # Enable mouse
set -g mouse on set -g mouse on
# Git on status bar
set -g status-right '#(gitmux "#{pane_current_path}")'