summaryrefslogtreecommitdiff
path: root/after/plugin/treesitter.lua
blob: 1eb6fa53956aad52c590815e8eabc685e940091d (plain)
1
2
3
4
5
6
7
8
9
10
require("nvim-treesitter.configs").setup({
	ensure_installed = { "lua", "bash" },
	sync_install = false,
	auto_install = true,

	highlight = {
		enable = true,
		additional_vim_regex_highlighting = false,
	},
})