From 7038dae6dfa0d1d338391c1b0c332a7b051a840c Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Thu, 12 Dec 2024 09:18:25 -0300 Subject: [PATCH] fix: nvim-ts-autotag on templ not working --- lua/dot013/plugins/ide.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/dot013/plugins/ide.lua b/lua/dot013/plugins/ide.lua index 3f93c9b..18b0691 100644 --- a/lua/dot013/plugins/ide.lua +++ b/lua/dot013/plugins/ide.lua @@ -181,8 +181,10 @@ return { event = { "BufReadPre", "BufNewFile" }, after = function() require("nvim-ts-autotag").setup({ - aliases = { - ["templ"] = "html", + opts = { + enable_close = true, + enable_rename = true, + enable_close_on_slash = false, }, }) end,