From 63959aec311cc7a38d43ef443301db53dbe8a90f Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Sat, 26 Mar 2022 16:37:19 +0300 Subject: [PATCH] add list for treesitter parsers --- neovim/.config/nvim/lua/user/treesitter.lua | 31 ++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) 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, },