ark/users/profiles/starship/default.nix

17 lines
319 B
Nix

{ ... }: {
programs.starship = {
enable = true;
settings = {
add_newline = false;
character = {
success_symbol = "[>](bold green)";
error_symbol = "[>](bold red)";
};
directory = {
truncation_length = 2;
truncate_to_repo = false;
};
};
};
}