mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-03 11:31:52 +00:00
ui/illuminate: move to setupOpts format
This commit is contained in:
parent
a4ef5e0f8c
commit
a3f650e114
2 changed files with 23 additions and 13 deletions
|
@ -4,22 +4,20 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.modules) mkIf;
|
inherit (lib.modules) mkIf;
|
||||||
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.dag) entryAnywhere;
|
inherit (lib.nvim.dag) entryAnywhere;
|
||||||
|
|
||||||
cfg = config.vim.ui.illuminate;
|
cfg = config.vim.ui.illuminate;
|
||||||
in {
|
in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
vim.startPlugins = ["vim-illuminate"];
|
vim = {
|
||||||
|
startPlugins = ["vim-illuminate"];
|
||||||
|
|
||||||
vim.pluginRC.vim-illuminate = entryAnywhere ''
|
# vim-illuminate does not have a setup function. It is instead called 'configure'
|
||||||
require('illuminate').configure({
|
# and does what you expect from a setup function. Wild.
|
||||||
filetypes_denylist = {
|
pluginRC.vim-illuminate = entryAnywhere ''
|
||||||
'dirvish',
|
require('illuminate').configure(${toLuaObject cfg.setupOpts})
|
||||||
'fugitive',
|
'';
|
||||||
'NvimTree',
|
};
|
||||||
'TelescopePrompt',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,19 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.options) mkEnableOption;
|
inherit (lib.options) mkOption mkEnableOption;
|
||||||
|
inherit (lib.types) listOf str;
|
||||||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||||
in {
|
in {
|
||||||
options.vim.ui.illuminate = {
|
options.vim.ui.illuminate = {
|
||||||
enable = mkEnableOption "automatically highlight other uses of the word under the cursor [vim-illuminate]";
|
enable = mkEnableOption ''
|
||||||
|
automatically highlight other uses of the word under the cursor [vim-illuminate]
|
||||||
|
'';
|
||||||
|
|
||||||
|
setupOpts = mkPluginSetupOption "vim-illuminate" {
|
||||||
|
filetypes_denylist = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
default = ["dirvish" "fugitive" "NvimTree" "TelescopePrompt"];
|
||||||
|
description = "Filetypes to not illuminate, this overrides `filetypes_allowlist`";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue