ark/users/profiles/starship/default.nix

18 lines
319 B
Nix
Raw Normal View History

2022-02-18 20:31:01 +03:00
{ ... }:
{
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;
};
};
};
}