mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
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
This commit is contained in:
parent
f0a984347c
commit
bae77b87b1
7 changed files with 397 additions and 254 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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue