dotvim/install.sh
2016-07-06 20:15:57 -07:00

18 lines
318 B
Bash
Executable File

#!/bin/sh
# YouCompleteMe
pushd .vim/bundle/YouCompleteMe
git submodule update --init --recursive
./install.py --clang-completer --system-libclang
popd
# tern_for_vim
pushd .vim/bundle/tern_for_vim
sudo npm install -g tern
npm install
popd
# syntastic
sudo npm -g install eslint
sudo pip install pyflakes --upgrade