feat(shell): show git 'ahead' commit count

This commit is contained in:
2026-05-31 17:47:33 +02:00
parent a9dc9c0ab9
commit 22e2b89074

View File

@@ -6,6 +6,13 @@
{ {
config = lib.mkIf config.shell.enable { config = lib.mkIf config.shell.enable {
programs.starship.enable = true; programs.starship = {
enable = true;
settings = {
git_status = {
ahead = "$\{count\}";
};
};
};
}; };
} }