aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-06-10 17:12:35 +0200
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commitbae77b87b1262ff101b06f9a8de0b2049edcefa1 (patch)
treedf9878be014f2a1ea9a263be30926ed62a06368f /README.md
parentfeat!: drop makefile support, norg parser (diff)
downloadnvim-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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4f2970883..48857e877 100644
--- a/README.md
+++ b/README.md
@@ -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,