feat(treesitter): install nvim-ts-autotag by default

This commit is contained in:
Folke Lemaitre
2023-10-11 22:39:24 +02:00
parent d8250910bd
commit cb7f5aca7a

View File

@ -103,4 +103,10 @@ return {
require("nvim-treesitter.configs").setup(opts)
end,
},
-- Automatically add closing tags for HTML and JSX
{
"windwp/nvim-ts-autotag",
event = "InsertEnter",
opts = {},
},
}