mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-06-07 04:35:03 +00:00
docs: added config directions for Lazy.nvim package manager (#2377)
(cherry picked from commit 57062ea455)
This commit is contained in:
@@ -104,6 +104,25 @@ use {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
|
||||||
|
|
||||||
|
```lua
|
||||||
|
-- init.lua:
|
||||||
|
{
|
||||||
|
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||||
|
-- or , branch = '0.1.1',
|
||||||
|
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||||
|
}
|
||||||
|
|
||||||
|
-- plugins/telescope.lua:
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||||
|
-- or , branch = '0.1.1',
|
||||||
|
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### checkhealth
|
### checkhealth
|
||||||
|
|
||||||
Make sure you call `:checkhealth telescope` after installing telescope to ensure
|
Make sure you call `:checkhealth telescope` after installing telescope to ensure
|
||||||
|
|||||||
Reference in New Issue
Block a user