From fcfe4d81959cb84e282050256489e65ae561a6ae Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Tue, 26 Nov 2024 09:30:50 -0500 Subject: [PATCH] style: fix indenting, remove blank lines --- .config/nvim/lua/plugins/illuminate.lua | 48 ++++++++++++------------- 1 file changed, 24 insertions(+), 24 deletions(-) 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, +}