From 902e78d59d7103f306beef43e9d353e6fb63788d Mon Sep 17 00:00:00 2001 From: notohh Date: Mon, 27 Feb 2023 06:08:01 -0500 Subject: [PATCH] chore: fix starship host format --- modules/home/starship/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/starship/default.nix b/modules/home/starship/default.nix index fd9a066..58f8d0d 100644 --- a/modules/home/starship/default.nix +++ b/modules/home/starship/default.nix @@ -28,12 +28,12 @@ show_always = true; style_user = "bg:#f5c2e7 fg:#11111b"; style_root = "bg:#f5c2e7 fg:#11111b"; - format = "[ $user ]($style)"; + format = "[ $user]($style)"; }; hostname = { ssh_symbol = ""; style = "bg:#f5c2e7 fg:#11111b"; - format = "[@ $hostname]($style)"; + format = "[@$hostname]($style)"; ssh_only = false; disabled = false; };