summaryrefslogtreecommitdiff
path: root/config/nvim-1/lua/plugins/treesitter/init.lua
blob: 192cab716233fc42954cec57b2ba11613bb8a71f (plain)
1
2
3
4
5
6
7
8
9
10
local ts = require("nvim-treesitter.configs")

ts.setup({
	ensure_installed = { "c", "cpp", "lua", "go", "gomod", "gowork", "gosum", "rust", "python" },
	auto_install = true,
	sync_install = true,
	highlight = {
		enable = true
	}
})