Add new plugin
This commit is contained in:
13
nvim/lua/plugins/autotag.lua
Executable file
13
nvim/lua/plugins/autotag.lua
Executable 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
|
||||
}
|
Reference in New Issue
Block a user