From 6b7c00e6ef7b11f1a74af8078b3c80fe61623ad0 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 16 Aug 2022 13:25:00 -0400 Subject: [PATCH] tweak(starship): improve git symbols --- users/profiles/starship.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/users/profiles/starship.nix b/users/profiles/starship.nix index 3133852..f628b6f 100644 --- a/users/profiles/starship.nix +++ b/users/profiles/starship.nix @@ -60,16 +60,16 @@ git_status = { format = " $ahead_behind$all_status"; - conflicted = "⚠️"; + conflicted = ""; ahead = "[⟫\${count}](green bold) "; behind = "[⟪\${count}](red bold)"; - diverged = "[🔀](red bold) "; - untracked = "[📁](grey bold) "; + diverged = "[](red bold) "; + untracked = "[](grey bold) "; stashed = "[↪](grey bold) "; - modified = "[𝚫](yellow bold) "; - staged = "[✔](green bold) "; - renamed = "[⇆](blue bold) "; - deleted = "[✘](red bold) "; + modified = "[](yellow bold) "; + staged = "[](green bold) "; + renamed = "[](blue bold) "; + deleted = "[](red bold) "; style = "bold"; };