14 lines
241 B
Lua
14 lines
241 B
Lua
lvim.plugins = {
|
|
{
|
|
'aperezdc/vim-template',
|
|
config = function()
|
|
end,
|
|
},
|
|
{
|
|
"windwp/nvim-ts-autotag",
|
|
config = function()
|
|
require("nvim-ts-autotag").setup()
|
|
end,
|
|
},
|
|
}
|