refactor one 'term' to rule them all

This commit is contained in:
Mathias Schneider
2026-03-26 14:29:16 +01:00
parent 6adaa7b4e5
commit ef9b2fd0f0
15 changed files with 0 additions and 0 deletions
@@ -0,0 +1,16 @@
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({
ensure_installed = { "python", "lua", "json", "yaml", "markdown" },
highlight = { enable = true },
indent = { enable = true },
})
end
end,
}