neovim-flake/modules/plugins/mini/comment/comment.nix

10 lines
246 B
Nix
Raw Normal View History

{lib, ...}: let
2025-01-17 21:29:48 +01:00
inherit (lib.options) mkEnableOption;
2025-01-17 19:25:56 +01:00
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.mini.comment = {
enable = mkEnableOption "mini.comment";
setupOpts = mkPluginSetupOption "mini.comment" {};
};
}