style: fix indenting, remove blank lines

This commit is contained in:
2024-11-26 09:30:50 -05:00
parent 0e1c494ac5
commit fcfe4d8195
+23 -23
View File
@@ -1,26 +1,26 @@
return { return {
'RRethy/vim-illuminate', 'RRethy/vim-illuminate',
event = { 'BufReadPre', 'BufNewFile' }, event = { 'BufReadPre', 'BufNewFile' },
opts = { opts = {
providers = { providers = {
'lsp', 'lsp',
'treesitter', 'treesitter',
'regex', 'regex',
}, },
delay = 100, delay = 100,
filetypes_denylist = { filetypes_denylist = {
'NvimTree', 'NvimTree',
'help', 'help',
'man', 'man',
'markdown', 'markdown',
'md', 'md',
}, },
under_cursor = true, under_cursor = true,
min_count_to_highlight = 1, min_count_to_highlight = 1,
case_insensitive_regex = false, case_insensitive_regex = false,
}, },
config = function(_, opts) config = function(_, opts)
require('illuminate').configure(opts) require('illuminate').configure(opts)
end, end,
} }