Files
nvim/lua/config/treesitter.lua
2026-01-14 21:01:46 +01:00

12 lines
322 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua", "c", "cpp", "rust" },
highlight = { enable = true, additional_vim_regex_highlighting = false },
indent = { enable = true },
})
end,
}