24 lines
514 B
Lua
24 lines
514 B
Lua
|
--
|
||
|
-- 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
|
||
|
}
|
||
|
}
|