mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
17 lines
487 B
Lua
17 lines
487 B
Lua
return {
|
|
"windwp/nvim-ts-autotag",
|
|
events = { "BufReadPre", "BufNewFile" },
|
|
opts = {
|
|
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 </
|
|
},
|
|
-- Also override individual filetype configs, these take priority.
|
|
-- Empty by default, useful if one of the "opts" global settings
|
|
-- doesn't work well in a specific filetype
|
|
per_filetype = {},
|
|
},
|
|
}
|