Skip to content

Commit 2f1f5ad

Browse files
committed
docs: add Lazy package manager to README.md
1 parent 71385f1 commit 2f1f5ad

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@ use({
2929
})
3030
```
3131

32+
If you are using [Lazy](https://github.com/folke/lazy.nvim), add this to your plugins list:
33+
34+
```lua
35+
{
36+
'nvim-treesitter/nvim-treesitter',
37+
build = ':TSUpdate',
38+
dependencies = { 'nvim-treesitter/nvim-treesitter-textobjects' },
39+
config = function()
40+
require'nvim-treesitter.configs'.setup {
41+
textobjects = {}
42+
}
43+
end,
44+
}
45+
```
46+
3247
## Text objects: select
3348

3449
Define your own text objects mappings

0 commit comments

Comments
 (0)