Thomas Alcala Schneider 87e6ff2cf1 feat: sentiment plugin
2023-11-08 14:27:40 +01:00

13 lines
270 B
Lua

return {
'utilyre/sentiment.nvim',
version = '*',
event = 'VeryLazy', -- keep for lazy loading
opts = {
-- config
},
init = function()
-- `matchparen.vim` needs to be disabled manually in case of lazy loading
vim.g.loaded_matchparen = 1
end,
}