2016-06-28 21:23:36 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# YouCompleteMe
|
2016-07-02 12:00:33 -07:00
|
|
|
pushd .vim/bundle/YouCompleteMe
|
2016-06-28 21:23:36 -07:00
|
|
|
git submodule update --init --recursive
|
2016-07-06 20:15:57 -07:00
|
|
|
./install.py --clang-completer --system-libclang
|
2016-06-28 21:23:36 -07:00
|
|
|
popd
|
|
|
|
|
|
|
|
# tern_for_vim
|
2016-07-02 12:00:33 -07:00
|
|
|
pushd .vim/bundle/tern_for_vim
|
2016-06-28 21:23:36 -07:00
|
|
|
sudo npm install -g tern
|
|
|
|
npm install
|
|
|
|
popd
|
|
|
|
|
|
|
|
# syntastic
|
|
|
|
sudo npm -g install eslint
|
2016-07-02 12:00:33 -07:00
|
|
|
sudo pip install pyflakes --upgrade
|