Merge pull request #2022 from bengadbois/vim-plug-install-instructions

Add vim-plug installation instructions
This commit is contained in:
w0rp 2018-10-26 16:19:15 +01:00 committed by GitHub
commit 86c035466b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -51,6 +51,7 @@ other content at [w0rp.com](https://w0rp.com).
1. [Installation with Vim package management](#standard-installation)
2. [Installation with Pathogen](#installation-with-pathogen)
3. [Installation with Vundle](#installation-with-vundle)
4. [Installation with Vim-Plug](#installation-with-vim-plug)
4. [Contributing](#contributing)
5. [FAQ](#faq)
1. [How do I disable particular linters?](#faq-disable-linters)
@ -402,6 +403,18 @@ Plugin 'w0rp/ale'
See the Vundle documentation for more information.
<a name="installation-with-vim-plug"></a>
### 3.iiii. Installation with Vim-Plug
You can install this plugin using [Vim-Plug](https://github.com/junegunn/vim-plug)
by adding the GitHub path for this repository to your `~/.vimrc`
and running `:PlugInstall`.
```vim
Plug 'w0rp/ale'
```
<a name="contributing"></a>
## 4. Contributing