summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-08-11 08:59:56 -0400
committerGitHub <noreply@github.com>2021-08-11 08:59:56 -0400
commitb5d7f48e705adbe6453e4e5c1f4e01ee2d5f0f7f (patch)
tree2497745750951acdb00f59c299124886fecee4de /README.md
parenta056a9c7e001f620f759b672264c03d8a2386e31 (diff)
doc: Update information about popup.nvim (#1103)
* doc: Update information about popup.nvim * fixup: Got rest of popup.nvim mentions
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index c1e03c0..33de33b 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,6 @@ This section should guide you to run your first built-in pickers :smile:.
Using [vim-plug](https://github.com/junegunn/vim-plug)
```viml
-Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
```
@@ -74,7 +73,6 @@ Plug 'nvim-telescope/telescope.nvim'
Using [dein](https://github.com/Shougo/dein.vim)
```viml
-call dein#add('nvim-lua/popup.nvim')
call dein#add('nvim-lua/plenary.nvim')
call dein#add('nvim-telescope/telescope.nvim')
```
@@ -83,7 +81,7 @@ Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
'nvim-telescope/telescope.nvim',
- requires = {{'nvim-lua/popup.nvim'}, {'nvim-lua/plenary.nvim'}}
+ requires = { {'nvim-lua/plenary.nvim'} }
}
```