aboutsummaryrefslogtreecommitdiff
path: root/lua/treesitterconf.lua
blob: ae491bb78001e5d906456191103a77e6a7074b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local present, ts_config = pcall(require, "nvim-treesitter.configs")
if not present then
	return
end

ts_config.setup {
	ensure_installed = {
		"python",
		"lua",
		"nix",
	},
	highlight = {
		enable = true,
	},
	indent = {
		enable = true, 
	}
}