From 01b4ba34a4fbb64959651683f90b8078168d1c30 Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Sun, 26 May 2024 11:39:25 +0300 Subject: [PATCH] feat: Added autotag --- lua/plugins/autotag.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/plugins/autotag.lua diff --git a/lua/plugins/autotag.lua b/lua/plugins/autotag.lua new file mode 100644 index 0000000..fd77975 --- /dev/null +++ b/lua/plugins/autotag.lua @@ -0,0 +1,7 @@ +return { + "windwp/nvim-ts-autotag", + lazy = false, + config = function() + require("nvim-ts-autotag").setup() + end, +}