From f12737b1f9c79b36f701b33ddfdd7b2bf715283a Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 18 Jul 2023 03:51:03 +0000 Subject: [PATCH] starship: try some other status symbols (but stay as is) --- hosts/common/programs/zsh/starship.nix | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/hosts/common/programs/zsh/starship.nix b/hosts/common/programs/zsh/starship.nix index 74747b2a..c439557e 100644 --- a/hosts/common/programs/zsh/starship.nix +++ b/hosts/common/programs/zsh/starship.nix @@ -55,13 +55,13 @@ in { git_status.style = "bold bg:#FCA17D fg:#ffffff"; # git_status.style = "bg:#FF8262"; git_status.format = "[$all_status$ahead_behind ]($style)"; - git_status.untracked = ""; - git_status.stashed = ""; - git_status.modified = "*"; - git_status.behind = "⇣$count"; git_status.ahead = "⇡$count"; + git_status.behind = "⇣$count"; # git_status.diverged = "⇣$behind_count⇡$ahead_count"; git_status.diverged = "⇡$ahead_count⇣$behind_count"; + git_status.modified = "*"; + git_status.stashed = ""; + git_status.untracked = ""; time.disabled = true; @@ -71,14 +71,16 @@ in { status.disabled = false; status.style = "bg:#33658A"; - # success_symbol = "♥ "; - # success_symbol = "💖"; - # success_symbol = "💙"; - # success_symbol = "💚"; - # success_symbol = "💜"; - # success_symbol = "✔️'"; + # status.success_symbol = "♥ "; + # status.success_symbol = "💖"; + # status.success_symbol = "💙"; + # status.success_symbol = "💚"; + # status.success_symbol = "💜"; + # status.success_symbol = "✔️'"; status.success_symbol = ""; status.symbol = "❌"; + # status.symbol = "❗️"; + # status.symbol = "‼️"; status.format = "[$symbol]($style)"; }; };