@@ -71,24 +71,34 @@ wiki.
7171
7272### Installation
7373
74+ It is suggested to either use the latest release
75+ [ tag] ( https://github.com/nvim-telescope/telescope.nvim/tags ) or our release
76+ branch (which will get consistent updates)
77+ [ 0.1.x] ( https://github.com/nvim-telescope/telescope.nvim/tree/0.1.x ) .
78+
79+ It is not suggested to run latest master.
80+
7481Using [ vim-plug] ( https://github.com/junegunn/vim-plug )
7582
7683``` viml
7784Plug 'nvim-lua/plenary.nvim'
78- Plug 'nvim-telescope/telescope.nvim'
85+ Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
86+ " or , { 'branch': '0.1.x' }
7987```
8088
8189Using [ dein] ( https://github.com/Shougo/dein.vim )
8290
8391``` viml
8492call dein#add('nvim-lua/plenary.nvim')
85- call dein#add('nvim-telescope/telescope.nvim')
93+ call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.0' })
94+ " or , { 'rev': '0.1.x' })
8695```
8796Using [ packer.nvim] ( https://github.com/wbthomason/packer.nvim )
8897
8998``` lua
9099use {
91- ' nvim-telescope/telescope.nvim' ,
100+ ' nvim-telescope/telescope.nvim' , tag = ' 0.1.0' ,
101+ -- or , branch = '0.1.x',
92102 requires = { {' nvim-lua/plenary.nvim' } }
93103}
94104```
0 commit comments