From 1cf0d13339d0efaebaf85aa39fa47f14dcf3e167 Mon Sep 17 00:00:00 2001 From: MasterGordon Date: Tue, 9 Jul 2024 23:13:41 +0200 Subject: [PATCH] fixed autotags --- lua/plugins/treesitter.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 261ae0b..d4fa0fe 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -14,6 +14,8 @@ npairs.setup( } ) +require("nvim-ts-autotag").setup({}) + local tscc = require("ts_context_commentstring.config") tscc.update( { @@ -30,8 +32,5 @@ require "nvim-treesitter.configs".setup { }, autotag = { enable = true - }, - autopairs = { - enable = true } }