From 564f4224ab18911b6914067fb2d3d2aee92343ec Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 10 Jan 2023 13:10:54 +0100 Subject: [PATCH] docs: install four bundled parser in README Now that Neovim bundles C, Lua, Vim, and Help parsers, these should be installed with nvim-treesitter as well to make sure that matching parser and query versions are used. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b508fa39..2ae077af4 100644 --- a/README.md +++ b/README.md @@ -103,8 +103,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" - ensure_installed = { "c", "lua", "rust" }, + -- A list of parser names, or "all" (the four listed parsers should always be installed) + ensure_installed = { "c", "lua", "vim", "help" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false,