this repo has no description
1return {
2 'nvim-treesitter/nvim-treesitter',
3 branch = 'main',
4 build = ":TSUpdate",
5 lazy = false,
6 config = function()
7 local nvimt = require('nvim-treesitter')
8
9 nvimt.install({"javascript",
10 "typescript",
11 "python",
12 "rust",
13 "c",
14 "lua",
15 "vim",
16 "vimdoc",
17 "toml",
18 "query",
19 "markdown",
20 "markdown_inline",
21 'doxygen' })
22 end}