From 57062ea4551e4d3f653253712ba76fa1fd9369b7 Mon Sep 17 00:00:00 2001 From: Norm <44226464+Normanras@users.noreply.github.com> Date: Sun, 19 Feb 2023 04:31:40 -0500 Subject: docs: added config directions for Lazy.nvim package manager (#2377) --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 68af6a9..a2a6f63 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit v1.2.3