add word highlighting

This commit is contained in:
2024-11-18 09:13:26 -05:00
parent b597839592
commit f71e13b4cf
+30
View File
@@ -0,0 +1,30 @@
return {
"RRethy/vim-illuminate",
lazy = true,
opts = {
providers = {
"lsp",
"treesitter",
"regex",
},
delay = 200,
filetypes_denylist = {
"dashboard",
"alpha",
"NvimTree",
"help",
"markdown",
"md",
"dirbuf",
"dirvish",
"fugitive",
},
under_cursor = true,
min_count_to_highlight = 1,
case_insensitive_regex = false,
},
config = function(_, opts)
require("illuminate").configure(opts)
end,
}