Update installation instructions.
Update pathogen's address. Change ; to && to stop early in case of error (@koalaman).
This commit is contained in:
parent
50518b335d
commit
576b84e2b7
@ -76,9 +76,8 @@ First I'll show you how to install Tim Pope's [pathogen][1] so that it's easy to
|
|||||||
install syntastic. Do this in your terminal so that you get the `pathogen.vim`
|
install syntastic. Do this in your terminal so that you get the `pathogen.vim`
|
||||||
file and the directories it needs:
|
file and the directories it needs:
|
||||||
```sh
|
```sh
|
||||||
mkdir -p ~/.vim/autoload ~/.vim/bundle; \
|
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
|
||||||
curl -LSso ~/.vim/autoload/pathogen.vim \
|
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
|
||||||
https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim
|
|
||||||
```
|
```
|
||||||
Next you *need* to add this to your `~/.vimrc`:
|
Next you *need* to add this to your `~/.vimrc`:
|
||||||
```vim
|
```vim
|
||||||
@ -92,7 +91,7 @@ execute pathogen#infect()
|
|||||||
You now have pathogen installed and can put syntastic into `~/.vim/bundle` like
|
You now have pathogen installed and can put syntastic into `~/.vim/bundle` like
|
||||||
this:
|
this:
|
||||||
```sh
|
```sh
|
||||||
cd ~/.vim/bundle
|
cd ~/.vim/bundle && \
|
||||||
git clone https://github.com/scrooloose/syntastic.git
|
git clone https://github.com/scrooloose/syntastic.git
|
||||||
```
|
```
|
||||||
Quit vim and start it back up to reload it, then type:
|
Quit vim and start it back up to reload it, then type:
|
||||||
|
@ -19,7 +19,7 @@ if has('reltime')
|
|||||||
lockvar! g:syntastic_start
|
lockvar! g:syntastic_start
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let g:syntastic_version = '3.4.0-69'
|
let g:syntastic_version = '3.4.0-70'
|
||||||
lockvar g:syntastic_version
|
lockvar g:syntastic_version
|
||||||
|
|
||||||
" Sanity checks {{{1
|
" Sanity checks {{{1
|
||||||
|
Loading…
Reference in New Issue
Block a user