diff options
Diffstat (limited to 'nvim/lua/config/treesitter.lua')
| -rw-r--r-- | nvim/lua/config/treesitter.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/nvim/lua/config/treesitter.lua b/nvim/lua/config/treesitter.lua new file mode 100644 index 0000000..c1e25a9 --- /dev/null +++ b/nvim/lua/config/treesitter.lua | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | local M = {} | ||
| 2 | |||
| 3 | -- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md | ||
| 4 | M.languages = { | ||
| 5 | "bash", | ||
| 6 | "c", | ||
| 7 | "cpp", | ||
| 8 | "html", | ||
| 9 | "javascript", | ||
| 10 | "lua", | ||
| 11 | "make", | ||
| 12 | "markdown", | ||
| 13 | "markdown_inline", | ||
| 14 | "prisma", | ||
| 15 | "python", | ||
| 16 | "typescript", | ||
| 17 | "vim", | ||
| 18 | "vimdoc", | ||
| 19 | "yaml", | ||
| 20 | "zsh", | ||
| 21 | } | ||
| 22 | |||
| 23 | return M | ||
