pantheon/programs_temp/starship.nix
2025-03-27 03:19:25 +08:00

15 lines
330 B
Nix

{
# starship is a customisable prompt for any shell
programs.starship = {
enable = true;
settings = {
add_newline = false;
format = "$character";
right_format = "$all";
character = {
success_symbol = "[\\$](bold green)";
error_symbol = "[\\$](bold red)";
};
};
};
}