illuminate.vim - (Neo)Vim plugin for automatically highlighting other uses of the word under the cursor using either LSP, Tree-sitter, or regex matching.
setup() is a more common/standard name for a general plugin configuration function.
And with lazy.nvim, it allows you to just specify the opts table instead of a whole function call.
setup()
is a more common/standard name for a general plugin configuration function. And withlazy.nvim
, it allows you to just specify theopts
table instead of a whole function call.It's a minor QoL improvement, but it also only takes a single line. What do you think?