mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
9 lines
252 B
Nix
9 lines
252 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.mini.operators = {
|
|
enable = mkEnableOption "mini.operators";
|
|
setupOpts = mkPluginSetupOption "mini.operators" {};
|
|
};
|
|
}
|