flake/programs/starship.nix

14 lines
203 B
Nix
Raw Normal View History

2023-11-25 17:05:15 +01:00
{
hm.programs.starship = {
enable = true;
settings = {
add_newline = false;
directory = {
truncation_length = 3;
truncation_symbol = "/";
};
};
};
2023-11-27 14:30:05 +01:00
}