dotvim/install.sh

18 lines
302 B
Bash
Raw Normal View History

2016-10-01 21:33:57 +00:00
#!/bin/bash
2016-06-29 04:23:36 +00:00
# YouCompleteMe
2016-07-02 19:00:33 +00:00
pushd .vim/bundle/YouCompleteMe
2016-06-29 04:23:36 +00:00
git submodule update --init --recursive
2016-10-01 21:33:57 +00:00
./install.py --clang-completer
2016-06-29 04:23:36 +00:00
popd
# tern_for_vim
2016-07-02 19:00:33 +00:00
pushd .vim/bundle/tern_for_vim
2016-06-29 04:23:36 +00:00
sudo npm install -g tern
npm install
popd
# syntastic
sudo npm -g install eslint
2016-07-02 19:00:33 +00:00
sudo pip install pyflakes --upgrade