Files
Neve/config/utils/todo-comments.nix
2025-02-06 17:45:39 +02:00

15 lines
241 B
Nix

{
lib,
config,
...
}: {
options = {
todo-comments.enable = lib.mkEnableOption "Enable todo-comments module";
};
config = lib.mkIf config.todo-comments.enable {
plugins.todo-comments = {
enable = true;
};
};
}