niksos/homes/jacek/cli/starship.nix
2023-08-01 14:21:45 +02:00

24 lines
586 B
Nix

{
config,
...
}: {
config = {
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 = "/";
read_only = "";
};
};
};
};
}