forked from dineshsalunke/nvim-config
17 lines
379 B
Lua
17 lines
379 B
Lua
return {
|
|
{
|
|
"windwp/nvim-ts-autotag",
|
|
config = function(_, _)
|
|
local autotag = require("nvim-ts-autotag")
|
|
|
|
autotag.setup({
|
|
opts = {
|
|
enable_rename = true,
|
|
enable_close = true,
|
|
enable_close_on_slash = true,
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|