From 88ff7d0077d7c1fc3fdfddd3cd983d47be4d22b8 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Tue, 3 Feb 2026 10:38:49 +0000 Subject: [PATCH] starship: use readable labels for git status symbols --- profiles/starship.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/profiles/starship.nix b/profiles/starship.nix index 25780b2..b9c37c9 100644 --- a/profiles/starship.nix +++ b/profiles/starship.nix @@ -23,20 +23,20 @@ truncation_length = 20; truncation_symbol = "…"; }; - git_status = { - format = "([$all_status$ahead_behind]($style) )"; - style = "bold #df8e1d"; - conflicted = "=$count "; - ahead = "⇡$count "; - behind = "⇣$count "; - diverged = "⇡$ahead_count⇣$behind_count "; - untracked = "?$count "; - stashed = "\\$$count "; - modified = "!$count "; - staged = "+$count "; - renamed = "»$count "; - deleted = "✘$count "; - }; + git_status = { + format = "([$all_status$ahead_behind]($style) )"; + style = "bold #df8e1d"; + conflicted = "conflict:$count "; + ahead = "ahead:$count "; + behind = "behind:$count "; + diverged = "ahead:$ahead_count behind:$behind_count "; + untracked = "new:$count "; + stashed = "stash:$count "; + modified = "mod:$count "; + staged = "staged:$count "; + renamed = "mv:$count "; + deleted = "del:$count "; + }; }; }; }