nix-flakes/modules/home/starship.nix
2026-09-10 01:54:06 +09:00

14 lines
238 B
Nix

{ ... }:
{
programs.starship = {
enable = true;
settings = {
add_newline = false;
directory = {
style = "fg:#fbb6c4";
format = "[$path]($style)";
truncation_length = 3;
};
};
};
}