From 8292b3f31a9cf77cf6278758db560eeb37fbec10 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 8 Nov 2015 22:41:37 +0900 Subject: [PATCH] Update usage examples --- README.md | 2 +- plug.vim | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56cab7f..7165c75 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } " Plugin outside ~/.vim/plugged with post-update hook -Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' } +Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " Unmanaged plugin (manually installed and updated) Plug '~/my-prototype-plugin' diff --git a/plug.vim b/plug.vim index b63d777..231073b 100644 --- a/plug.vim +++ b/plug.vim @@ -24,11 +24,14 @@ " " Using git URL " Plug 'https://github.com/junegunn/vim-github-dashboard.git' " +" " Using a non-master branch +" Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } + " " Plugin options " Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } " " " Plugin outside ~/.vim/plugged with post-update hook -" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' } +" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " " " Unmanaged plugin (manually installed and updated) " Plug '~/my-prototype-plugin'