summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGabriel Petrovay <gabipetrovay@gmail.com>2020-11-21 21:32:58 +0100
committerGitHub <noreply@github.com>2020-11-21 20:32:58 +0000
commitb09ccc12c3001b4d551d35cb0c4195793d9b6d10 (patch)
tree70fc06391698a2650f49a5499b562bd1b753b82e /README.md
parente1184e31f6ed7907b0fdc51eaf4507af6f22d7d9 (diff)
downloadale-b09ccc12c3001b4d551d35cb0c4195793d9b6d10.zip
Added the Vundle command in installation instructions (#3400)
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/README.md b/README.md
index 69ff33ae..438af9b6 100644
--- a/README.md
+++ b/README.md
@@ -341,12 +341,14 @@ git clone https://github.com/dense-analysis/ale.git
### 3.iii. Installation with Vundle
You can install this plugin using [Vundle](https://github.com/VundleVim/Vundle.vim)
-by using the path on GitHub for this repository.
+by adding the GitHub path for this repository to your `~/.vimrc`:
```vim
Plugin 'dense-analysis/ale'
```
+Then run the command `:PluginInstall` in Vim.
+
See the Vundle documentation for more information.
<a name="installation-with-vim-plug"></a>
@@ -354,13 +356,16 @@ See the Vundle documentation for more information.
### 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`.
+by adding the GitHub path for this repository to your `~/.vimrc`:
```vim
Plug 'dense-analysis/ale'
```
+Then run the command `:PlugInstall` in Vim.
+
+See the Vim-Plug documentation for more information.
+
<a name="contributing"></a>
## 4. Contributing