summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
blob: 623e80823bf5505d4f8817dd90ea92748d991e7a (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
39
40
41
42
43
44
45
46
47
require("nvim-treesitter.configs").setup({
	highlight = { enable = true },
	ensure_installed = {
		"c",
		"lua",
		"python",
		"bash",
		"go",
		"html",
		"css",
		"javascript",
		"typescript",
		"git_config",
		"git_rebase",
		"gitattributes",
		"gitcommit",
		"gitignore",
		"gomod",
		"gosum",
		"gotmpl",
		"gowork",
		"hjson",
		"ini",
		"json",
		"json5",
		"jsonnet",
		"latex",
		"make",
		"markdown",
		"markdown_inline",
		"nginx",
		"proto",
		"rust",
		"templ",
		"todotxt",
		"toml",
		"tsx",
		"typescript",
		"vim",
		"vimdoc",
		"xml",
		"yaml",
		"sql",
		"ssh_config",
	},
	ignore_install = { "gdhsader", "phpdoc" },
})