From 53c563fc45b93c44264188380de4b226f1b080db Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Thu, 8 Jun 2023 23:27:22 +0100 Subject: [PATCH] added auto tag renaming --- lua/custom/plugins/rename-tags.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/custom/plugins/rename-tags.lua 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 +}