aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/config/treesitter.lua')
-rw-r--r--nvim/lua/config/treesitter.lua56
1 files changed, 28 insertions, 28 deletions
diff --git a/nvim/lua/config/treesitter.lua b/nvim/lua/config/treesitter.lua
index 1eee267..d900e41 100644
--- a/nvim/lua/config/treesitter.lua
+++ b/nvim/lua/config/treesitter.lua
@@ -1,28 +1,28 @@
1local M = {} 1local M = {}
2 2
3-- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md 3-- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md
4M.languages = { 4M.languages = {
5 "bash", 5 "bash",
6 "c", 6 "c",
7 "cpp", 7 "cpp",
8 "html", 8 "html",
9 "javascript", 9 "javascript",
10 "jq", 10 "jq",
11 "json", 11 "json",
12 "lua", 12 "lua",
13 "make", 13 "make",
14 "markdown", 14 "markdown",
15 "markdown_inline", 15 "markdown_inline",
16 "po", 16 "po",
17 "powershell", 17 "powershell",
18 "prisma", 18 "prisma",
19 "python", 19 "python",
20 "typescript", 20 "typescript",
21 "vim", 21 "vim",
22 "vimdoc", 22 "vimdoc",
23 "xml", 23 "xml",
24 "yaml", 24 "yaml",
25 "zsh", 25 "zsh",
26} 26}
27 27
28return M 28return M