From da50e3369bc7fb46a3c87962d8f50e574036a54b Mon Sep 17 00:00:00 2001 From: kiana-S Date: Fri, 10 Feb 2023 09:54:41 -0500 Subject: [PATCH] Update Starship configuration --- home-manager/shell/starship.nix | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/home-manager/shell/starship.nix b/home-manager/shell/starship.nix index 79e684b..1af74d2 100644 --- a/home-manager/shell/starship.nix +++ b/home-manager/shell/starship.nix @@ -27,8 +27,8 @@ }; nix_shell = { - format = "[$symbol]($style)"; - symbol = "❄️ "; + format = "[$symbol \\($state\\) ]($style)"; + symbol = "❄️"; }; jobs = { @@ -39,7 +39,10 @@ status = { disabled = false; + pipestatus = true; format = "[\\($int\\)]($style) "; + pipestatus_segment_format = "$int"; + pipestatus_format = "[\\($pipestatus\\)]($style) "; }; time = { @@ -48,21 +51,21 @@ style = "dimmed cyan"; }; - git_branch.style = "bold green"; + git_branch.style = "bold bright-green"; git_status = { format = "$stashed$ahead_behind$conflicted$deleted$renamed$staged$modified$untracked"; - conflicted = "[~$count ](red)"; - ahead = "[⇡$count ](cyan)"; - behind = "[⇣$count ](cyan)"; - diverged = "[⇕ ](cyan)"; - untracked = "[?$count ](cyan)"; - stashed = "[\\$$count ](cyan)"; + conflicted = "[~$count ](bright-red)"; + ahead = "[⇡$count ](bright-cyan)"; + behind = "[⇣$count ](bright-cyan)"; + diverged = "[⇕ ](bright-cyan)"; + untracked = "[?$count ](bright-cyan)"; + stashed = "[\\$$count ](bright-cyan)"; modified = "[!$count ](yellow)"; staged = "[+$count ](yellow)"; renamed = "[»$count ](yellow)"; - deleted = "[✘$count ](red)"; + deleted = "[✘$count ](bright-red)"; }; }; }