ark/users/modules/starship/default.nix

18 lines
356 B
Nix
Raw Normal View History

2022-03-09 23:55:02 +03:00
{...}: {
programs.starship = {
enable = true;
settings = {
2022-10-22 01:49:09 +03:00
format = "$directory$character";
add_newline = false;
character = {
success_symbol = "[>](bold green)";
error_symbol = "[>](bold red)";
};
directory = {
truncation_length = 2;
truncate_to_repo = false;
};
};
};
}