aboutsummaryrefslogtreecommitdiffstats
path: root/home/nvim/plugins/treesitter.lua
blob: c408901d1e6b86e39b67c718487aff174ff17cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require "nvim-treesitter".setup {
	install_dir = vim.fn.stdpath("data") .. "/site",
	highlight = {
		enable = true,
	},
	rainbow = {
		enable = true,
		extended_mode = true,
		max_file_lines = 2000,
	},
	additional_vim_regex_highlighting = false,
}