kickstart.nvim/lua/custom/plugins/html.lua

21 lines
367 B
Lua

return {
{
'windwp/nvim-ts-autotag',
ft = {
'html',
'javascript',
'typescript',
'svelte',
},
config = function()
require('nvim-ts-autotag').setup {
-- opts = {
-- enable_close = true,
-- enable_rename = true,
-- enable_close_on_slash = false,
-- },
}
end,
},
}