From f53c241ae43e85da431cdfa46a30cb7f9a09a556 Mon Sep 17 00:00:00 2001 From: Ayo Date: Wed, 24 Jun 2026 18:49:11 +0200 Subject: [PATCH] feat(tmux): use nova theme --- .tmux.conf | 47 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 307a631..0c8f0ad 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,16 +1,46 @@ -# IMPORTANT: To apply plugins, while on tmux press: , I +# IMPORTANT: +# - To apply plugins, while on tmux press: , I +# - Install Nerd Fonts # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' -# Solarized theme -#set -g @plugin 'seebi/tmux-colors-solarized' -#set -g @colors-solarized 'light' +# Nova theme +set -g @plugin 'o0th/tmux-nova' -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 @nova-nerdfonts true +set -g @nova-nerdfonts-left  +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_wbg 1 # GitHub / GitLab stats # set -g @tokyo-night-tmux_show_netspeed 1 # network speed @@ -46,3 +76,6 @@ bind -n C-k select-pane -D # Enable mouse set -g mouse on + +# Git on status bar +set -g status-right '#(gitmux "#{pane_current_path}")'