aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/treesitter.lua
blob: 1eee267c27d97cf4a56a3be4618f17e6575b8f93 (plain)
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
local M = {}

-- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md
M.languages = {
  "bash",
  "c",
  "cpp",
  "html",
  "javascript",
  "jq",
  "json",
  "lua",
  "make",
  "markdown",
  "markdown_inline",
  "po",
  "powershell",
  "prisma",
  "python",
  "typescript",
  "vim",
  "vimdoc",
  "xml",
  "yaml",
  "zsh",
}

return M