summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-07-12 16:02:44 +0200
committerGitHub <noreply@github.com>2022-07-12 16:02:44 +0200
commitb79cd6c88b3d96b0f49cb7d240807cd59b610cd8 (patch)
tree928e5b109c2479c6a5aea84e0f2693aaa6696669 /README.md
parent2d4ef4d6e5754b7bae2cdc3d44d7d952c42638ca (diff)
release: telescope 0.1.0 (#2067)
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 13 insertions, 3 deletions
diff --git a/README.md b/README.md
index 56c1d17..5c5d0c6 100644
--- a/README.md
+++ b/README.md
@@ -71,24 +71,34 @@ wiki.
### Installation
+It is suggested to either use the latest release
+[tag](https://github.com/nvim-telescope/telescope.nvim/tags) or our release
+branch (which will get consistent updates)
+[0.1.x](https://github.com/nvim-telescope/telescope.nvim/tree/0.1.x).
+
+It is not suggested to run latest master.
+
Using [vim-plug](https://github.com/junegunn/vim-plug)
```viml
Plug 'nvim-lua/plenary.nvim'
-Plug 'nvim-telescope/telescope.nvim'
+Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
+" 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')
+call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.0' })
+" or , { 'rev': '0.1.x' })
```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
- 'nvim-telescope/telescope.nvim',
+ 'nvim-telescope/telescope.nvim', tag = '0.1.0',
+-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}
```