From dc098995079d0d693bd72bae1fbdde7880a9f01c Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Mon, 2 Dec 2024 23:27:59 -0800 Subject: [PATCH] Updated tmux status bar styling --- modules/home/apps/tmux/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/modules/home/apps/tmux/default.nix b/modules/home/apps/tmux/default.nix index 3607a01..118d690 100644 --- a/modules/home/apps/tmux/default.nix +++ b/modules/home/apps/tmux/default.nix @@ -32,7 +32,19 @@ in { enable = true; baseIndex = 1; - catppuccin.enable = true; + catppuccin = { + enable = true; + extraConfig = '' + set -g @catppuccin_window_status_style "rounded" + + set -g status-right-length 100 + set -g status-left-length 100 + set -g status-left "" + set -g status-right "#{E:@catppuccin_status_application}" + set -ag status-right "#{E:@catppuccin_status_session}" + set -ag status-right "#{E:@catppuccin_status_host}" + ''; + }; keyMode = "vi"; newSession = true; sensibleOnTop = true;