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

21 lines
367 B
Lua
Raw Normal View History

2024-07-05 18:21:07 +03:00
return {
{
'windwp/nvim-ts-autotag',
2024-08-19 02:00:42 +03:00
ft = {
'html',
'javascript',
'typescript',
'svelte',
},
2024-07-05 18:21:07 +03:00
config = function()
require('nvim-ts-autotag').setup {
-- opts = {
-- enable_close = true,
-- enable_rename = true,
-- enable_close_on_slash = false,
-- },
}
end,
},
}