This commit is contained in:
2026-03-10 23:47:39 +01:00
parent b50ad6baa8
commit 30c84977cb
5 changed files with 26 additions and 6 deletions

View File

@@ -11,11 +11,9 @@ return {
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
},
highlight = { enable = true, },
-- Integrate autotag with Treesitter
autotag = { enable = true, },
config = function(_, opts)
autotag = { enable = true },
},
config = function(_, opts)
local ok, configs = pcall(require, "nvim-treesitter.configs")
if ok then configs.setup(opts) end
end,