docs: update install instructions with latest tag (#2587)

tag 0.1.1 -> 0.1.2
This commit is contained in:
James Trew
2023-06-30 12:39:57 -04:00
committed by GitHub
parent e651c37317
commit c5b11f4fe7

View File

@@ -83,7 +83,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
```viml ```viml
Plug 'nvim-lua/plenary.nvim' Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.1' } Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.2' }
" or , { 'branch': '0.1.x' } " or , { 'branch': '0.1.x' }
``` ```
@@ -91,14 +91,14 @@ Using [dein](https://github.com/Shougo/dein.vim)
```viml ```viml
call dein#add('nvim-lua/plenary.nvim') call dein#add('nvim-lua/plenary.nvim')
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.1' }) call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.2' })
" or , { 'rev': '0.1.x' }) " or , { 'rev': '0.1.x' })
``` ```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim) Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua ```lua
use { use {
'nvim-telescope/telescope.nvim', tag = '0.1.1', 'nvim-telescope/telescope.nvim', tag = '0.1.2',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} } requires = { {'nvim-lua/plenary.nvim'} }
} }
@@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua ```lua
-- init.lua: -- init.lua:
{ {
'nvim-telescope/telescope.nvim', tag = '0.1.1', 'nvim-telescope/telescope.nvim', tag = '0.1.2',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' } dependencies = { 'nvim-lua/plenary.nvim' }
} }
-- plugins/telescope.lua: -- plugins/telescope.lua:
return { return {
'nvim-telescope/telescope.nvim', tag = '0.1.1', 'nvim-telescope/telescope.nvim', tag = '0.1.2',
-- or , branch = '0.1.x', -- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' } dependencies = { 'nvim-lua/plenary.nvim' }
} }