diff --git a/lua/custom/plugins/rename-tags.lua b/lua/custom/plugins/rename-tags.lua new file mode 100644 index 00000000..9458923a --- /dev/null +++ b/lua/custom/plugins/rename-tags.lua @@ -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 +}