dotvim/install.sh
2019-03-29 22:33:47 -07:00

18 lines
310 B
Bash
Executable File

#!/bin/bash
# YouCompleteMe
pushd .vim/bundle_extra/YouCompleteMe
git submodule update --init --recursive
./install.py --clang-completer
popd
# tern_for_vim
pushd .vim/bundle_extra/tern_for_vim
sudo npm install -g tern
npm install
popd
# ale
sudo npm -g install eslint
pip install --user pyflakes --upgrade