update install script

This commit is contained in:
Alex Yatskov 2019-10-29 19:35:59 -07:00
parent 5d5f8301da
commit 893b560d03

View File

@ -1,6 +1,15 @@
#!/bin/bash
git submodule update --init --recursive
if [ -x "$(command -v pip2)" ]; then
pip2 install --user pyflakes
fi
if [ -x "$(command -v pip3)" ]; then
pip3 install --user pynvim
fi
if [ -x "$(command -v npm)" ]; then
sudo npm install -g tern
fi