File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -79,28 +79,28 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
7979
8080``` vim
8181Plug 'nvim-lua/plenary.nvim'
82- Plug 'nvim-telescope/telescope.nvim', { 'tag': 'v0.1.9 ' }
82+ Plug 'nvim-telescope/telescope.nvim', { 'tag': 'v0.2.0 ' }
8383```
8484
8585Using [ dein] ( https://github.com/Shougo/dein.vim )
8686
8787``` vim
8888call dein#add('nvim-lua/plenary.nvim')
89- call dein#add('nvim-telescope/telescope.nvim', { 'rev': 'v0.1.9 ' })
89+ call dein#add('nvim-telescope/telescope.nvim', { 'rev': 'v0.2.0 ' })
9090```
9191
9292Using [ lazy.nvim] ( https://github.com/folke/lazy.nvim )
9393
9494``` lua
9595-- init.lua:
9696 {
97- ' nvim-telescope/telescope.nvim' , tag = ' v0.1.9 ' ,
97+ ' nvim-telescope/telescope.nvim' , tag = ' v0.2.0 ' ,
9898 dependencies = { ' nvim-lua/plenary.nvim' }
9999 }
100100
101101-- plugins/telescope.lua:
102102return {
103- ' nvim-telescope/telescope.nvim' , tag = ' v0.1.9 ' ,
103+ ' nvim-telescope/telescope.nvim' , tag = ' v0.2.0 ' ,
104104 dependencies = { ' nvim-lua/plenary.nvim' }
105105 }
106106```
You can’t perform that action at this time.
0 commit comments