Skip to content

Commit

Permalink
doc: update tag to latest version (nvim-telescope#2737)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conni2461 authored and rameshsanth committed Nov 17, 2023
1 parent b44c595 commit d9291d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,22 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)

```viml
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.3' }
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4' }
" or , { 'branch': '0.1.x' }
```

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

```viml
call dein#add('nvim-lua/plenary.nvim')
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.3' })
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.4' })
" or , { 'rev': '0.1.x' })
```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)

```lua
use {
'nvim-telescope/telescope.nvim', tag = '0.1.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}
Expand All @@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
-- init.lua:
{
'nvim-telescope/telescope.nvim', tag = '0.1.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' }
}

-- plugins/telescope.lua:
return {
'nvim-telescope/telescope.nvim', tag = '0.1.3',
'nvim-telescope/telescope.nvim', tag = '0.1.4',
-- or , branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' }
}
Expand Down

0 comments on commit d9291d1

Please sign in to comment.