dotfiles/dot_config/nvim/after/plugin/treesitter.lua
2026-02-06 09:15:12 +01:00

13 lines
273 B
Lua

-- English comments only.
local ok, configs = pcall(require, "nvim-treesitter.configs")
if not ok then
return
end
configs.setup({
ensure_installed = { "lua", "vim", "vimdoc", "rust", "toml", "json" },
highlight = { enable = true },
indent = { enable = true },
})