diff --git a/.config/nvim/lua/plugins/ts-autotag.lua b/.config/nvim/lua/plugins/ts-autotag.lua new file mode 100644 index 0000000..366c724 --- /dev/null +++ b/.config/nvim/lua/plugins/ts-autotag.lua @@ -0,0 +1,25 @@ +return { + 'windwp/nvim-ts-autotag', + ft = { + 'astro', + 'glimmer', + 'handlebars', + 'html', + 'javascript', + 'jsx', + 'markdown', + 'php', + 'rescript', + 'svelte', + 'tsx', + 'twig', + 'typescript', + 'vue', + 'xml', + }, + opts = { + opts = { + enable_close_on_slash = true, + }, + }, +}