1-- return {
2-- "nvim-treesitter/nvim-treesitter",
3-- build = ":TSUpdate",
4-- config = function()
5-- local configs = require("nvim-treesitter.configs")
6-- configs.setup({
7-- ensure_installed = { "c", "cpp", "go",
8-- "rust", "css", "lua", "vim",
9-- "vimdoc", "javascript", "html",
10-- "typescript", "json", "make", "cmake",
11-- "python", "yaml", "bash" },
12-- indent = { enable = true }
13-- })
14-- end
15-- }
16
17
18return {
19 "romus204/tree-sitter-manager.nvim",
20 config = function()
21 require("tree-sitter-manager").setup({
22 ensure_installed = {
23 "c", "cpp", "go", "rust", "css", "lua",
24 "javascript", "typescript", "json",
25 "python", "bash", "markdown", "markdown_inline",
26 },
27 auto_install = true,
28 })
29 end
30}