mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
25 lines
439 B
Nix
25 lines
439 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf nvim;
|
|
|
|
cfg = config.vim.ui.illuminate;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim.startPlugins = ["vim-illuminate"];
|
|
|
|
vim.luaConfigRC.vim-illuminate = nvim.dag.entryAnywhere ''
|
|
require('illuminate').configure({
|
|
filetypes_denylist = {
|
|
'dirvish',
|
|
'fugitive',
|
|
'NvimTree',
|
|
'TelescopePrompt',
|
|
},
|
|
})
|
|
'';
|
|
};
|
|
}
|