utillity/coverage: add crazy coverage

This commit is contained in:
Snoweuph 2026-03-21 05:41:26 +01:00
commit 67f9a96abf
No known key found for this signature in database
GPG key ID: BEFC41DA223CEC55
6 changed files with 67 additions and 12 deletions

View file

@ -0,0 +1,11 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.utility.crazy-coverage = {
enable = mkEnableOption "coverage for neovim";
setupOpts =
mkPluginSetupOption "crazy-coverage.nvim" {};
};
}