niksos/modules/cli/starship.nix
2023-09-08 16:10:15 +02:00

18 lines
442 B
Nix

_: {
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
add_newline = false;
command_timeout = 1000;
line_break = {
disabled = true;
};
directory = {
truncation_length = 3;
truncate_to_repo = false;
truncation_symbol = "/";
};
};
};
}