starship already uses shell colours be default

This commit is contained in:
William 2024-09-20 19:09:26 -03:00
parent 8d6c22b810
commit aea4643c4a

View file

@ -62,7 +62,6 @@
settings = { settings = {
add_newline = false; add_newline = false;
format = "$git_branch$git_status$nix_shell[ ](bold green)"; format = "$git_branch$git_status$nix_shell[ ](bold green)";
palette = "stylix";
git_branch.symbol = " "; git_branch.symbol = " ";
nix_shell = { nix_shell = {
format = "via [$symbol $state]($style) "; format = "via [$symbol $state]($style) ";
@ -79,19 +78,6 @@
error_symbol = "[](bold red)"; error_symbol = "[](bold red)";
success_symbol = "[󱐋](bold green)"; success_symbol = "[󱐋](bold green)";
}; };
palettes.stylix = {
background = config.lib.stylix.colors.withHashtag.base00;
backgroundAlt = config.lib.stylix.colors.withHashtag.base01;
green = config.lib.stylix.colors.withHashtag.base0B;
cyan = config.lib.stylix.colors.withHashtag.base0C;
yellow = config.lib.stylix.colors.withHashtag.base0A;
red = config.lib.stylix.colors.withHashtag.base08;
blue = config.lib.stylix.colors.withHashtag.base0D;
purple = config.lib.stylix.colors.withHashtag.base0E;
main = config.lib.stylix.colors.withHashtag.base05;
seco = config.lib.stylix.colors.withHashtag.base04;
tert = config.lib.stylix.colors.withHashtag.base06;
};
}; };
}; };