diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/nvim-treesitter.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index 7ffa43f2b..edb8579e8 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -39,13 +39,13 @@ To enable supported features, put this in your `init.lua` file: > require'nvim-treesitter.configs'.setup { - -- One of "all", "maintained" (parsers with maintainers), or a list of languages - ensure_installed = "maintained", + -- A list of parser names, or "all" + ensure_installed = { "c", "lua", "rust" }, - -- Install languages synchronously (only applied to `ensure_installed`) + -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, - -- List of parsers to ignore installing + -- List of parsers to ignore installing (for "all") ignore_install = { "javascript" }, highlight = { |
