diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2026-01-04 18:04:18 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2026-01-04 18:08:46 +0100 |
| commit | 99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff (patch) | |
| tree | 710066b1d16ca70df62674839f87c852f74af3ee | |
| parent | feat: add kos parser and queries (#8389) (diff) | |
| download | nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar.gz nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar.bz2 nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar.lz nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar.xz nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.tar.zst nvim-treesitter-99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff.zip | |
docs(readme): fix lazy snippet
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,10 +32,10 @@ For details on these and how to help improving them, see [CONTRIBUTING.md](./CON You can install `nvim-treesitter` with your favorite package manager (or using the native `package` feature of vim, see `:h packages`). This plugin is only guaranteed to work with specific versions of language parsers** (as specified in the `parser.lua` table). **When upgrading the plugin, you must make sure that all installed parsers are updated to the latest version** via `:TSUpdate`. -It is strongly recommended to automate this; e.g., using [lazy.nvim](https://github.com/folke/lazy.nvim) +It is strongly recommended to automate this; e.g., using the following spec with [lazy.nvim](https://github.com/folke/lazy.nvim): ```lua -require('lazy').setup({ +{ 'nvim-treesitter/nvim-treesitter', lazy = false, build = ':TSUpdate' |
