nvf/modules/plugins/mini/indentscope/indentscope.nix

14 lines
274 B
Nix
Raw Normal View History

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