feat: add plugin vim-illuminate

This commit is contained in:
Sven Vogel 2024-11-08 16:28:19 +01:00
parent 37ee45ce2e
commit 6b5508c3a3
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
--
-- Mark all occurances of the word under the current cursor
--
-- Source: https://github.com/RRethy/vim-illuminate
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 08.11.2024
-- Edited: 08.11.2024
--
-- ==============================================
return {
{
'RRethy/vim-illuminate',
opts = {
case_insensitive_regex = false,
},
config = function(opts)
require('illuminate').configure(opts)
end
}
}