feat: disable treesitter plugin

This commit is contained in:
Oliver Ladner 2025-05-12 09:47:27 +02:00
commit a41a2376fb
2 changed files with 65 additions and 63 deletions

View file

@ -3,4 +3,5 @@
return { return {
"nvim-treesitter/nvim-treesitter-context", "nvim-treesitter/nvim-treesitter-context",
event = { "BufReadPre", "BufNewFile" }, event = { "BufReadPre", "BufNewFile" },
enabled = false,
} }

View file

@ -3,6 +3,7 @@ return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
build = ":TSUpdate", build = ":TSUpdate",
event = { "BufReadPre", "BufNewFile" }, event = { "BufReadPre", "BufNewFile" },
enabled = false,
dependencies = { dependencies = {
"nvim-treesitter/nvim-treesitter-textobjects", "nvim-treesitter/nvim-treesitter-textobjects",
}, },