pantheon/configs/shell/starship.nix
2025-03-27 04:26:49 +08:00

16 lines
338 B
Nix

{
home-manager.users.rafiq = {
programs.starship = {
enable = true;
settings = {
add_newline = false;
format = "$character";
right_format = "$all";
character = {
success_symbol = "[\\$](bold green)";
error_symbol = "[\\$](bold red)";
};
};
};
};
}