28 lines
479 B
Lua
28 lines
479 B
Lua
return {
|
|
{
|
|
'windwp/nvim-ts-autotag',
|
|
opts = {
|
|
autotag = {
|
|
enable = true,
|
|
enable_close = true,
|
|
enable_rename = true,
|
|
enable_close_on_slash = true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
'windwp/nvim-autopairs',
|
|
event = 'InsertEnter',
|
|
config = true,
|
|
},
|
|
{
|
|
'triimdev/invero.nvim',
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
vim.o.background = 'light'
|
|
vim.cmd.colorscheme('invero')
|
|
end,
|
|
},
|
|
}
|