aboutsummaryrefslogblamecommitdiff
path: root/lua/plugins/opts/treesitter.lua
blob: b9ec31a5f20e57f8ea85db0f29db9e61ab320c4d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
        












                             














                                                                                                          

                                                                                       





                                                                          
return {
	ensure_installed = {
		"lua",
		"c",
		"bash",
		"nix",
		"python",
		"markdown",
		"html",
		"css",
		"javascript",
		"typescript",
		"svelte",
	},
	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,
	},
}