diff --git a/.config/nvim/lua/plugins/illuminate.lua b/.config/nvim/lua/plugins/illuminate.lua index 2a9543d..3099359 100644 --- a/.config/nvim/lua/plugins/illuminate.lua +++ b/.config/nvim/lua/plugins/illuminate.lua @@ -1,26 +1,26 @@ return { - 'RRethy/vim-illuminate', - event = { 'BufReadPre', 'BufNewFile' }, - opts = { - providers = { - 'lsp', - 'treesitter', - 'regex', - }, - delay = 100, - filetypes_denylist = { - 'NvimTree', - 'help', - 'man', - 'markdown', - 'md', - }, - under_cursor = true, - min_count_to_highlight = 1, - case_insensitive_regex = false, - }, + 'RRethy/vim-illuminate', + event = { 'BufReadPre', 'BufNewFile' }, + opts = { + providers = { + 'lsp', + 'treesitter', + 'regex', + }, + delay = 100, + filetypes_denylist = { + 'NvimTree', + 'help', + 'man', + 'markdown', + 'md', + }, + under_cursor = true, + min_count_to_highlight = 1, + case_insensitive_regex = false, + }, - config = function(_, opts) - require('illuminate').configure(opts) - end, -} \ No newline at end of file + config = function(_, opts) + require('illuminate').configure(opts) + end, +}