diff --git a/neovim/.config/nvim/lua/user/treesitter.lua b/neovim/.config/nvim/lua/user/treesitter.lua index a0ba225..7bcb100 100644 --- a/neovim/.config/nvim/lua/user/treesitter.lua +++ b/neovim/.config/nvim/lua/user/treesitter.lua @@ -1,5 +1,34 @@ require("nvim-treesitter.configs").setup({ - ensure_installed = "maintained", + ensure_installed = { + "bash", + "c", + "cmake", + "comment", + "cpp", + "css", + "dockerfile", + "go", + "gomod", + "graphql", + "html", + "javascript", + "jsdoc", + "json", + "jsonc", + "lua", + "make", + "markdown", + "prisma", + "python", + "rust", + "scss", + "svelte", + "toml", + "tsx", + "typescript", + "vim", + "yaml", + }, highlight = { enable = true, },