mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 17:15:58 +01:00
fix(illuminate): ignore NvimTree for highlighting
This commit is contained in:
parent
c290c2adc3
commit
79edfbdb47
1 changed files with 10 additions and 3 deletions
|
@ -10,8 +10,15 @@ in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
vim.startPlugins = ["vim-illuminate"];
|
vim.startPlugins = ["vim-illuminate"];
|
||||||
|
|
||||||
vim.luaConfigRC.vim-illuminate =
|
vim.luaConfigRC.vim-illuminate = nvim.dag.entryAnywhere ''
|
||||||
nvim.dag.entryAnywhere ''
|
require('illuminate').configure({
|
||||||
'';
|
filetypes_denylist = {
|
||||||
|
'dirvish',
|
||||||
|
'fugitive',
|
||||||
|
'NvimTree',
|
||||||
|
'TelescopePrompt',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue