added auto tag renaming

This commit is contained in:
Micah Effiong 2023-06-08 23:27:22 +01:00
parent 808ce5efd5
commit 53c563fc45
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- setup for tag renaming
-- best for web development
return {
'windwp/nvim-ts-autotag',
config = function()
require('nvim-treesitter.configs').setup {
autotag = {
enable = true
}
}
end
}