Add new plugin

This commit is contained in:
2025-02-06 17:19:28 +01:00
parent 10e3c9df3e
commit c82a1316d0
2 changed files with 48 additions and 34 deletions

13
nvim/lua/plugins/autotag.lua Executable file
View File

@@ -0,0 +1,13 @@
return {
"windwp/nvim-ts-autotag",
config = function ()
require('nvim-ts-autotag').setup({
opts = {
-- Defaults
enable_close = true, -- Auto close tags
enable_rename = true, -- Auto rename pairs of tags
enable_close_on_slash = true -- Auto close on trailing </
},
} )
end
}