aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/opts/treesitter.lua
blob: 9da56903ad065ad0b48cc7a65a397ef19ea5777b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
return {
	ensure_installed = {
		"lua",
		"c",
		"bash",
		"nix",
		"python",
		"markdown",
		"html",
		"css",
		"javascript",
		"typescript",
		"svelte",
		"go",
	},
	sync_install = false,
	indent = { enable = true },

	highlight = {
		enable = true,
		use_languagetree = true,
		-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
		-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
		-- Using this option may slow down your editor, and you may see some duplicate highlights.
		-- Instead of true it can also be a list of languages
		additional_vim_regex_highlighting = false,

		-- disable for > 100 KB files
		disable = function(_, buf)
			local max_filesize = 100 * 1024 -- 100 KB
			local ok, stats =
				pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
			if ok and stats and stats.size > max_filesize then
				return true
			end
		end,
	},
}