mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 01:40:17 +00:00
13 lines
313 B
Bash
13 lines
313 B
Bash
#!/bin/bash
|
|
|
|
function __init_vim_syntastic() {
|
|
set -e
|
|
set -u
|
|
|
|
mkdir -p "$HOME/.vim/pack/plugins/start"
|
|
rm -rf "$HOME/.vim/pack/plugins/start/vim-syntastic"
|
|
git clone --depth=1 https://github.com/vim-syntastic/syntastic.git "$HOME/.vim/pack/plugins/start/vim-syntastic"
|
|
}
|
|
|
|
__init_vim_syntastic
|