diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-06-10 17:12:35 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | bae77b87b1262ff101b06f9a8de0b2049edcefa1 (patch) | |
| tree | df9878be014f2a1ea9a263be30926ed62a06368f /README.md | |
| parent | feat!: drop makefile support, norg parser (diff) | |
| download | nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar.gz nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar.bz2 nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar.lz nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar.xz nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.tar.zst nvim-treesitter-bae77b87b1262ff101b06f9a8de0b2049edcefa1.zip | |
feat: add parser tiers
Tier 1: Stable
Tier 2: Core (maintained by org members)
Tier 3: Community (maintained by external contributors, to varying
degree)
Tier 4: Unsupported (lacking active maintainer or declared
experimental); skipped in lockfile update and ignored for automatic
install by default
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,11 +53,11 @@ require('lazy').setup( ```lua require'nvim-treesitter'.setup { - -- A list of parser names or tiers ('core', 'stable', 'community', 'unstable') + -- A list of parser names or tiers ('stable', 'core', 'community', 'unsupported') ensure_install = { }, -- List of parsers to ignore installing - ignore_install = { }, + ignore_install = { 'unsupported' }, -- Automatically install missing parsers when entering buffer auto_install = false, |
