From 87f480a24d6895dee605a8c2a52334cde84e8d31 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Tue, 27 May 2025 16:47:51 +0200 Subject: [PATCH] Fixed treesitter tag autoclose (#3) --- nvim/dot-config/nvim/lua/plugins/treesitter.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nvim/dot-config/nvim/lua/plugins/treesitter.lua b/nvim/dot-config/nvim/lua/plugins/treesitter.lua index 2cc0275..263e37a 100644 --- a/nvim/dot-config/nvim/lua/plugins/treesitter.lua +++ b/nvim/dot-config/nvim/lua/plugins/treesitter.lua @@ -4,7 +4,7 @@ return { "nvim-treesitter/nvim-treesitter", dependencies = { { "nvim-treesitter/nvim-treesitter-textobjects", branch = "master" }, - "windwp/nvim-ts-autotag", + { "windwp/nvim-ts-autotag", opts = {} }, }, lazy = false, branch = "master", @@ -71,9 +71,6 @@ return { }, }, }, - autotag = { - enable = true, - }, }, }, }