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

@ -1,6 +1,7 @@
-- Shows context of code line
-- Shows context of code line
-- Docs: https://github.com/nvim-treesitter/nvim-treesitter-context
return {
"nvim-treesitter/nvim-treesitter-context",
event = { "BufReadPre", "BufNewFile" },
enabled = false,
}

View file

@ -1,66 +1,67 @@
-- Treesitter
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPre", "BufNewFile" },
dependencies = {
"nvim-treesitter/nvim-treesitter-textobjects",
},
config = function()
local treesitter = require("nvim-treesitter.configs")
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPre", "BufNewFile" },
enabled = false,
dependencies = {
"nvim-treesitter/nvim-treesitter-textobjects",
},
config = function()
local treesitter = require("nvim-treesitter.configs")
treesitter.setup({
highlight = { enable = true },
indent = { enable = true },
auto_install = false,
-- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
ensure_installed = {
"lua",
"comment", -- used for TODO/FIXME/NOTE etc
"vim",
"vimdoc",
"bash",
"diff",
"gitignore",
"markdown",
"markdown_inline",
"elixir",
"eex",
"heex",
"yaml",
"html",
"javascript",
"css",
"dockerfile",
"query",
"hcl",
"bicep",
"csv",
"properties",
"ini",
"python",
"regex",
"json",
"go",
"gomod",
"gosum",
"tcl",
"editorconfig",
"http",
"make",
"toml",
"latex",
"sql",
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<C-space>",
node_incremental = "<C-space>",
scope_incremental = false,
node_decremental = "<bs>",
},
},
})
end,
treesitter.setup({
highlight = { enable = true },
indent = { enable = true },
auto_install = false,
-- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
ensure_installed = {
"lua",
"comment", -- used for TODO/FIXME/NOTE etc
"vim",
"vimdoc",
"bash",
"diff",
"gitignore",
"markdown",
"markdown_inline",
"elixir",
"eex",
"heex",
"yaml",
"html",
"javascript",
"css",
"dockerfile",
"query",
"hcl",
"bicep",
"csv",
"properties",
"ini",
"python",
"regex",
"json",
"go",
"gomod",
"gosum",
"tcl",
"editorconfig",
"http",
"make",
"toml",
"latex",
"sql",
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<C-space>",
node_incremental = "<C-space>",
scope_incremental = false,
node_decremental = "<bs>",
},
},
})
end,
}