31 lines
438 B
Lua
31 lines
438 B
Lua
return {
|
|
{
|
|
'windwp/nvim-autopairs',
|
|
event = "InsertEnter",
|
|
opts = {}
|
|
},
|
|
{
|
|
'windwp/nvim-ts-autotag',
|
|
opts = {}
|
|
},
|
|
{
|
|
'RRethy/nvim-treesitter-endwise',
|
|
config = function()
|
|
require('nvim-treesitter.configs').setup {
|
|
endwise = {
|
|
enable = true,
|
|
},
|
|
}
|
|
end
|
|
},
|
|
{
|
|
"utilyre/sentiment.nvim",
|
|
version = "*",
|
|
event = "VeryLazy",
|
|
opts = {},
|
|
init = function()
|
|
vim.g.loaded_matchparen = 1
|
|
end,
|
|
}
|
|
}
|