summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2019-06-10 13:33:54 +0100
committerGitHub <noreply@github.com>2019-06-10 13:33:54 +0100
commit730752523b31167909a2c895b35eb1051cbfbb39 (patch)
treef7d9ab42222ffa425a00ece25b198e5bb19c5591
parentd9bad6c0b83b51da1c8e83f5b72e58e8755453c8 (diff)
parentb41eecd31bb7fe56de838d15fc632f51856a80cb (diff)
downloadale-730752523b31167909a2c895b35eb1051cbfbb39.zip
Merge pull request #2574 from enterprisey/patch-1
In README, more efficient git clones
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 019da143..64a80ef2 100644
--- a/README.md
+++ b/README.md
@@ -258,14 +258,14 @@ any other tools. Simply clone the plugin into your `pack` directory.
```bash
mkdir -p ~/.vim/pack/git-plugins/start
-git clone https://github.com/w0rp/ale.git ~/.vim/pack/git-plugins/start/ale
+git clone --depth 1 https://github.com/w0rp/ale.git ~/.vim/pack/git-plugins/start/ale
```
#### NeoVim on Unix
```bash
mkdir -p ~/.local/share/nvim/site/pack/git-plugins/start
-git clone https://github.com/w0rp/ale.git ~/.local/share/nvim/site/pack/git-plugins/start/ale
+git clone --depth 1 https://github.com/w0rp/ale.git ~/.local/share/nvim/site/pack/git-plugins/start/ale
```
#### Vim 8 on Windows
@@ -273,7 +273,7 @@ git clone https://github.com/w0rp/ale.git ~/.local/share/nvim/site/pack/git-plug
```bash
# Run these commands in the "Git for Windows" Bash terminal
mkdir -p ~/vimfiles/pack/git-plugins/start
-git clone https://github.com/w0rp/ale.git ~/vimfiles/pack/git-plugins/start/ale
+git clone --depth 1 https://github.com/w0rp/ale.git ~/vimfiles/pack/git-plugins/start/ale
```
#### Generating Vim help files