niksos/modules/cli/starship.nix

19 lines
442 B
Nix
Raw Normal View History

2023-09-08 16:10:15 +02:00
_: {
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 = "/";
};
};
};
}