Files
dotfiles/nvim/lua/plugins/nvim-treesitter.lua
markus.dieckmann 7fbdc87385 update treesitter
2026-06-16 14:34:28 +02:00

25 lines
618 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
branch = "main",
config = function()
local configs = require("nvim-treesitter.config")
--
-- configs.setup({
-- ensure_installed = "all",
-- sync_install = false,
-- highlight = { enable = true },
-- indent = { enable = true },
-- incremental_selection = {
-- enable = true,
-- keymaps = {
-- init_selection = "<Enter>",
-- node_incremental = "<Enter>",
-- scope_incremental = false,
-- node_decremental = "<Backspace>",
-- },
-- },
-- })
end,
}