feat(parsers): rework tiers

* stable: updates follow semver releases (todo)
* unstable: updates follow HEAD (default)
* unmaintained: no automatic updates
* unsupported: no updates, cannot be installed
This commit is contained in:
Christian Clason 2025-02-09 13:19:34 +01:00
parent 188bbf7a09
commit a9f34d5a76
9 changed files with 569 additions and 571 deletions

View file

@ -42,10 +42,10 @@ To install supported parsers and queries, put this in your `init.lua` file:
-- Defaults to the `stdpath('data')/site` dir.
install_dir = "/some/path/to/store/parsers",
-- A list of parser names, or "core", "stable", "community", "unstable"
ensure_install = { "core", "rust" },
-- A list of parser names, or "stable", "unstable", "unmaintained", "unsupported"
ensure_install = { "stable", "rust" },
-- List of parsers to ignore installing (for "core" etc.)
-- List of parsers to ignore installing (for "stable" etc.)
ignore_install = { "javascript" },
}