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
|
local M = {}
-- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md
M.languages = {
"bash",
"c",
"cpp",
"html",
"javascript",
-- "jinja",
-- "jinja_inline",
"jq",
"json", -- weiterhin nötig für Injections, z.B. ```json in Markdown
"jsonc",
"lua",
"make",
"markdown",
"markdown_inline",
"po",
"powershell",
"prisma",
"python",
"typescript",
"vim",
"vimdoc",
"xml",
"yaml",
"zsh",
}
return M
|