More description on plug#end

Related: #379
This commit is contained in:
Junegunn Choi 2016-12-18 12:12:57 +09:00
parent 8180692f81
commit b50f9bb16b
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -65,6 +65,8 @@ Add a vim-plug section to your `~/.vimrc` (or `~/.config/nvim/init.vim` for Neov
1. Begin the section with `call plug#begin()`
1. List the plugins with `Plug` commands
1. `call plug#end()` to update `&runtimepath` and initialize plugin system
- Automatically executes `filetype plugin indent on` and `syntax enable`.
You can revert the settings after the call. e.g. `filetype indent off`, `syntax off`, etc.
#### Example