This commit is contained in:
Chris Kruining 2024-07-23 23:31:36 +02:00
parent 77e187421e
commit d3f9972a46
12 changed files with 45 additions and 51 deletions

View file

@ -11,7 +11,7 @@ in
hm.programs.starship = {
enable = true;
settings = let
inherit (config.modules.themes.colors.main) normal types;
inherit (config.modules.themes.colors.main) normal bright types;
in {
scan_timeout = 10;
add_newline = true;
@ -37,28 +37,28 @@ in
nix_shell = {
symbol = " ";
format = "[$symbol$name]($style) ";
style = "${normal.purple} bold";
style = "${normal.magenta} bold";
};
git_branch = {
only_attached = true;
format = "[$symbol$branch]($style) ";
symbol = "";
style = "${normal.yellow} bold";
style = "${bright.yellow} bold";
};
git_commit = {
only_detached = true;
format = "[$hash]($style) ";
style = "${normal.yellow} bold";
style = "${bright.yellow} bold";
};
git_state = {
style = "${normal.purple} bold";
style = "${bright.magenta} bold";
};
git_status = {
style = "${normal.green} bold";
style = "${bright.green} bold";
};
directory = {
@ -68,16 +68,16 @@ in
cmd_duration = {
format = "[$duration]($style) ";
style = "${normal.blue}";
style = "${bright.blue}";
};
jobs = {
style = "${normal.green} bold";
style = "${bright.green} bold";
};
character = {
success_symbol = "[\\$](${normal.green} bold)";
error_symbol = "[\\$](${normal.red} bold)";
success_symbol = "[\\$](${bright.green} bold)";
error_symbol = "[\\$](${bright.red} bold)";
};
};
};