mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-09 14:18:36 +00:00
16 lines
516 B
Nix
16 lines
516 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkOption mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
inherit (lib.types) str listOf;
|
|
in {
|
|
options.vim.mini.indentscope = {
|
|
enable = mkEnableOption "mini.indentscope";
|
|
setupOpts = mkPluginSetupOption "mini.indentscope" {
|
|
ignore_filetypes = mkOption {
|
|
type = listOf str;
|
|
default = ["help" "neo-tree" "notify" "NvimTree" "TelescopePrompt"];
|
|
description = "File types to ignore for illuminate";
|
|
};
|
|
};
|
|
};
|
|
}
|