feat: sentiment plugin

This commit is contained in:
Thomas Alcala Schneider 2023-11-08 14:27:40 +01:00
parent d09205f6e6
commit 87e6ff2cf1
2 changed files with 38 additions and 25 deletions

View file

@ -0,0 +1,12 @@
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,
}