Neovim/lua/plugins/vim-illuminate.lua

24 lines
514 B
Lua
Raw Normal View History

2024-11-08 15:28:19 +00:00
--
-- 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
}
}