summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2023-01-16 22:20:50 +0100
committerSimon Hauser <Simon-Hauser@outlook.de>2023-01-16 22:20:50 +0100
commit2f32775405f6706348b71d0bb8a15a22852a61e4 (patch)
tree25228652169188be29be89af981e47f81e2d08e8 /README.md
parentb69b33eded07341253bc1f0b4ae6bbc5c411a2ab (diff)
release: 0.1.1
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 38237d6..ee4d5c6 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug)
```viml
Plug 'nvim-lua/plenary.nvim'
-Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
+Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.1' }
" or , { 'branch': '0.1.x' }
```
@@ -90,14 +90,14 @@ 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.0' })
+call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.1' })
" or , { 'rev': '0.1.x' })
```
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
- 'nvim-telescope/telescope.nvim', tag = '0.1.0',
+ 'nvim-telescope/telescope.nvim', tag = '0.1.1',
-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}