aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/treesitter.lua
blob: c1e25a9e395f13422bc93bb0c1087183e90dd627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local M = {}

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

return M