Skip to content

Commit 3a12a85

Browse files
authored
docs(readme): update plugin manager example snippets (#3569)
- Updated tag to latest release in install snippets. - Removed `branch = 0.1.x` as this branch no longer seems to be maintained. - Premoved packer.nvim example, as it has been archived.
1 parent 0294ae3 commit 3a12a85

File tree

1 file changed

+5
-19
lines changed

1 file changed

+5
-19
lines changed

README.md

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -84,42 +84,28 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
8484

8585
```viml
8686
Plug 'nvim-lua/plenary.nvim'
87-
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.8' }
88-
" or , { 'branch': '0.1.x' }
87+
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.9' }
8988
```
9089

9190
Using [dein](https://github.com/Shougo/dein.vim)
9291

9392
```viml
9493
call dein#add('nvim-lua/plenary.nvim')
95-
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.8' })
96-
" or , { 'rev': '0.1.x' })
97-
```
98-
99-
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
100-
101-
```lua
102-
use {
103-
'nvim-telescope/telescope.nvim', tag = '0.1.8',
104-
-- or , branch = '0.1.x',
105-
requires = { {'nvim-lua/plenary.nvim'} }
106-
}
94+
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.9' })
10795
```
10896

10997
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
11098

11199
```lua
112100
-- init.lua:
113101
{
114-
'nvim-telescope/telescope.nvim', tag = '0.1.8',
115-
-- or , branch = '0.1.x',
116-
dependencies = { 'nvim-lua/plenary.nvim' }
102+
'nvim-telescope/telescope.nvim', tag = '0.1.9',
103+
dependencies = { 'nvim-lua/plenary.nvim' }
117104
}
118105

119106
-- plugins/telescope.lua:
120107
return {
121-
'nvim-telescope/telescope.nvim', tag = '0.1.8',
122-
-- or , branch = '0.1.x',
108+
'nvim-telescope/telescope.nvim', tag = '0.1.9',
123109
dependencies = { 'nvim-lua/plenary.nvim' }
124110
}
125111
```

0 commit comments

Comments
 (0)