forked from poz/niksos
18 lines
442 B
Nix
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 = "…/";
|
|
};
|
|
};
|
|
};
|
|
}
|