diff options
| author | Norm <44226464+Normanras@users.noreply.github.com> | 2023-02-19 04:31:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-19 10:31:40 +0100 |
| commit | 57062ea4551e4d3f653253712ba76fa1fd9369b7 (patch) | |
| tree | f89e76296f708cad68fa135de07fc49a1e181c15 | |
| parent | e572c63c7d1ea508710f3a2d81934147841f5733 (diff) | |
docs: added config directions for Lazy.nvim package manager (#2377)
| -rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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 Make sure you call `:checkhealth telescope` after installing telescope to ensure |
