diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-02-09 13:19:34 +0100 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | a9f34d5a768b2afcece98ba31345602a71f42fcb (patch) | |
| tree | 33a0d3d3868966729792ca28074c292713d83b7b /README.md | |
| parent | fix(ci): update to changed neovim release name (diff) | |
| download | nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.gz nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.bz2 nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.lz nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.xz nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.zst nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.zip | |
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
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -53,11 +53,11 @@ require('lazy').setup( ```lua require'nvim-treesitter'.setup { - -- A list of parser names or tiers ('stable', 'core', 'community', 'unsupported') - ensure_install = { }, + -- A list of parser names or tiers ('stable', 'unstable') + ensure_install = { 'stable' }, - -- List of parsers to ignore installing - ignore_install = { 'unsupported' }, + -- List of parsers to ignore when installing tiers + ignore_install = { 'rust' }, -- Directory to install parsers and queries to install_dir = vim.fn.stdpath('data') .. '/site' |
