feat: add plugin vim-illuminate
This commit is contained in:
parent
37ee45ce2e
commit
6b5508c3a3
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue