Skip to content

Commit

Permalink
fix(starship): Remove extra space after git server icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jan 4, 2024
1 parent 9854529 commit a98c4b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home-manager/modules/starship.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit a98c4b2

Please sign in to comment.