diff options
| author | Jonas Strittmatter <40792180+smjonas@users.noreply.github.com> | 2022-07-08 09:36:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-08 07:36:54 +0000 |
| commit | 365f0eb75f4b8de4655476388c99aaa97f149ded (patch) | |
| tree | f10dcb86f85baa296573c9017f0754246f64dd45 /doc | |
| parent | highlights(c): highlight `,` operator as operator (#3107) (diff) | |
| download | nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar.gz nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar.bz2 nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar.lz nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar.xz nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.tar.zst nvim-treesitter-365f0eb75f4b8de4655476388c99aaa97f149ded.zip | |
feat: add option to auto-install missing parsers (#3130)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/nvim-treesitter.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index e870ab352..6fc65d001 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -51,6 +51,9 @@ To enable supported features, put this in your `init.lua` file: -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, + -- Automatically install missing parsers when entering buffer + auto_install = false, + -- List of parsers to ignore installing (for "all") ignore_install = { "javascript" }, |
