mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-20 08:52:23 +00:00
14 lines
250 B
Nix
14 lines
250 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.mini.doc = {
|
|
enable = mkEnableOption "mini.doc";
|
|
setupOpts = mkPluginSetupOption "mini.doc" {};
|
|
};
|
|
}
|