From b653450e15b4e6f16dd5abbb47919a50a2f1e070 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 26 Sep 2021 22:34:29 -0400 Subject: [PATCH] fix(starship): fix git status ahead/behind --- users/profiles/starship.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/profiles/starship.nix b/users/profiles/starship.nix index 41ddddf..e858544 100644 --- a/users/profiles/starship.nix +++ b/users/profiles/starship.nix @@ -70,8 +70,8 @@ git_status = { format = "([「$all_status$ahead_behind」]($style))"; conflicted = "⚠️"; - ahead = "⟫$${count} "; - behind = "⟪$${count}"; + ahead = "⟫\${count} "; + behind = "⟪\${count}"; diverged = "🔀 "; untracked = "📁 "; stashed = "↪ ";