Skip to content

Commit

Permalink
docs(readme): update latest stable version tag (#3179)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddorre committed Jun 21, 2024
1 parent c392f1b commit f2bfde7
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 @@ -85,23 +85,23 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)

```viml
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.6' }
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.8' }
" 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.6' })
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.8' })
" or , { 'rev': '0.1.x' })
```

Using [packer.nvim](https://github.com/wbthomason/packer.nvim)

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

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

0 comments on commit f2bfde7

Please sign in to comment.