From c5b11f4fe780f4acd6ed0d58575d3cb7af3e893a Mon Sep 17 00:00:00 2001 From: James Trew <66286082+jamestrew@users.noreply.github.com> Date: Fri, 30 Jun 2023 12:39:57 -0400 Subject: [PATCH] docs: update install instructions with latest tag (#2587) tag 0.1.1 -> 0.1.2 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c8c33fc..9077980 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Using [vim-plug](https://github.com/junegunn/vim-plug) ```viml Plug 'nvim-lua/plenary.nvim' -Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.1' } +Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.2' } " or , { 'branch': '0.1.x' } ``` @@ -91,14 +91,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.1' }) +call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.2' }) " or , { 'rev': '0.1.x' }) ``` Using [packer.nvim](https://github.com/wbthomason/packer.nvim) ```lua use { - 'nvim-telescope/telescope.nvim', tag = '0.1.1', + 'nvim-telescope/telescope.nvim', tag = '0.1.2', -- or , branch = '0.1.x', requires = { {'nvim-lua/plenary.nvim'} } } @@ -109,14 +109,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim) ```lua -- init.lua: { - 'nvim-telescope/telescope.nvim', tag = '0.1.1', + 'nvim-telescope/telescope.nvim', tag = '0.1.2', -- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } } -- plugins/telescope.lua: return { - 'nvim-telescope/telescope.nvim', tag = '0.1.1', + 'nvim-telescope/telescope.nvim', tag = '0.1.2', -- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } }