aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2026-01-04 18:04:18 +0100
committerChristian Clason <ch.clason+github@icloud.com>2026-01-04 18:08:46 +0100
commit99dfc5acefd7728cec4ad0d0a6a9720f2c2896ff (patch)
tree710066b1d16ca70df62674839f87c852f74af3ee
parentfeat: add kos parser and queries (#8389) (diff)
downloadnvim-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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0f363c5f7..298ee8182 100644
--- a/README.md
+++ b/README.md
@@ -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'