doc: Update information about popup.nvim (#1103)

* doc: Update information about popup.nvim

* fixup: Got rest of popup.nvim mentions
This commit is contained in:
TJ DeVries
2021-08-11 08:59:56 -04:00
committed by GitHub
parent a056a9c7e0
commit b5d7f48e70
7 changed files with 27 additions and 37 deletions

View File

@@ -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'} }
}
```