From a98c4b25a06827d8350103dd410ee0cdd3d6dcce Mon Sep 17 00:00:00 2001 From: Mat Jones Date: Thu, 4 Jan 2024 13:37:13 -0500 Subject: [PATCH] fix(starship): Remove extra space after git server icon --- home-manager/modules/starship.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/modules/starship.nix b/home-manager/modules/starship.nix index 97ac02bd..81f83d70 100644 --- a/home-manager/modules/starship.nix +++ b/home-manager/modules/starship.nix @@ -47,7 +47,7 @@ GIT_REMOTE=$(git ls-remote --get-url 2> /dev/null); if [[ "$GIT_REMOTE" =~ "github" ]]; then printf "\e[1;37m\e[0m"; elif [[ "$GIT_REMOTE" =~ "gitlab" ]]; then echo ""; else echo "󰊢"; fi''; shell = [ "bash" "--noprofile" "--norc" ]; style = "bold #f74e27"; # git brand color - format = "[$output]($style) "; + format = "[$output]($style) "; }; nix_shell = { description = "Show an indicator when inside a Nix ephemeral shell";