Files
work/term/.config/nvim/lua/plugins/treesitter.lua
T
2026-03-26 23:01:29 +01:00

18 lines
427 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
lazy = true,
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
config = function()
local ok, configs = pcall(require, "nvim-treesitter.configs")
if ok then
configs.setup({
auto_install = true,
-- ensure_installed = { "python", "lua", "json", "yaml", "markdown" },
highlight = { enable = true },
indent = { enable = true },
})
end
end,
}