aboutsummaryrefslogtreecommitdiffstats
path: root/home/nvim/plugins/treesitter.lua
blob: 7f470b048dd89c03da8cdd95e46a317f8dd4df18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
	indent = {
		enable = true,
	},
}