From 3f2bc5c7d0d519bd00728c11f9d2ebcf0858e108 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Tue, 5 Nov 2024 13:26:47 -0500 Subject: [PATCH] starship ew no apple symbol --- modules/core.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/modules/core.nix b/modules/core.nix index 59c5108..8bf9165 100644 --- a/modules/core.nix +++ b/modules/core.nix @@ -109,6 +109,26 @@ truncation_length = 3; truncation_symbol = "…/"; }; + git_branch = { + symbol = ""; + style = "bg:#394260"; + format = "[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)"; + }; + git_status = { + style = "bg:#394260"; + format = "[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)"; + }; + php = { + symbol = ""; + style = "bg:#212736"; + format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; + }; + time = { + disabled = false; + time_format = "%R"; # Hour:Minute Format + style = "bg:#1d2230"; + format = "[[  $time ](fg:#a0a9cb bg:#1d2230)]($style)"; + }; }; };