Files
nix/home/modules/shell/prompt.nix
T

19 lines
231 B
Nix

{
config,
lib,
...
}:
{
config = lib.mkIf config.shell.enable {
programs.starship = {
enable = true;
settings = {
git_status = {
ahead = "⇡$\{count\}";
};
};
};
};
}