nvim-dot-file/lua/plugins/nvim-treesitter.lua
2026-05-01 23:30:22 +02:00

9 lines
261 B
Lua

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