From 0b31be49cf9f985444f1ebc607b13e1ce213f34e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 22 Jul 2014 12:47:34 +0900 Subject: [PATCH] Update README --- README.md | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index aba3aef..aa19d11 100644 --- a/README.md +++ b/README.md @@ -40,27 +40,25 @@ call plug#begin('~/.vim/plugged') " Make sure you use single quotes Plug 'junegunn/seoul256.vim' Plug 'junegunn/vim-easy-align' + +" On-demand loading Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'tpope/vim-fireplace', { 'for': 'clojure' } -" Plug 'user/repo1', 'branch_or_tag' -" Plug 'user/repo2', { 'rtp': 'vim/plugin/dir', 'branch': 'devel' } -" Plug 'git@github.com:junegunn/vim-github-dashboard.git' -" Plug '/my/local/vim/plugin' -" ... + +" Using git URL +Plug 'https://github.com/junegunn/vim-github-dashboard.git' + +" Plugin options +Plug 'nsf/gocode', { 'tag': 'go.weekly.2012-03-13', 'rtp': 'vim' } + +" Locally-managed plugin +Plug '~/.fzf' call plug#end() ``` Reload .vimrc and `:PlugInstall` to install plugins. -### Plugin directory - -If you omit the path argument to `plug#begin()`, plugins are installed in -`plugged` directory under the first path in `runtimepath` at the point when -`plug#begin()` is called. This is usually `~/.vim/plugged` (or -`$HOME/vimfiles/plugged` on Windows) given that you didn't touch runtimepath -before the call. - ### Commands | Command | Description | @@ -94,6 +92,7 @@ before the call. - `D` - `PlugDiff` - `S` - `PlugStatus` +- `R` - Retry failed update or installation tasks - `q` - Close the window ### Example: A small [sensible](https://github.com/tpope/vim-sensible) Vim configuration