projects
/
webi-installers
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
bugfix(_example): vars should be quoted (and disable unexported vars warning)
[webi-installers/.git]
/
vim-syntastic
/
install.sh
1
#!/bin/bash
2
3
function __init_vim_syntastic() {
4
set -e
5
set -u
6
7
mkdir -p "$HOME/.vim/pack/plugins/start"
8
rm -rf "$HOME/.vim/pack/plugins/start/vim-syntastic"
9
git clone --depth=1 https://github.com/vim-syntastic/syntastic.git "$HOME/.vim/pack/plugins/start/vim-syntastic"
10
}
11
12
__init_vim_syntastic