From 8212548e3346aa56166a0831016026f265562e4a Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Fri, 3 Mar 2023 15:49:25 +0100 Subject: [PATCH] docs(readme): recommend installing query parser now bundled in Neovim --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90bebb570..f97bcd5bb 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ All modules are disabled by default and need to be activated explicitly in your ```lua require'nvim-treesitter.configs'.setup { - -- A list of parser names, or "all" (the four listed parsers should always be installed) - ensure_installed = { "c", "lua", "vim", "help" }, + -- A list of parser names, or "all" (the five listed parsers should always be installed) + ensure_installed = { "c", "lua", "vim", "help", "query" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false,