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