Auto Close/Rename tags
This commit is contained in:
parent
a9b0532e78
commit
aecb6ae46b
2 changed files with 19 additions and 0 deletions
15
lua/custom/plugins/autotag.lua
Normal file
15
lua/custom/plugins/autotag.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
'windwp/nvim-ts-autotag',
|
||||
dependencies = 'nvim-treesitter/nvim-treesitter',
|
||||
config = function()
|
||||
require('nvim-ts-autotag').setup {
|
||||
opts = {
|
||||
enable_close = true,
|
||||
enable_rename = true,
|
||||
enable_close_on_slash = true,
|
||||
},
|
||||
}
|
||||
end,
|
||||
lazy = true,
|
||||
event = 'VeryLazy',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue