-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·65 lines (52 loc) · 2.11 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
# create a link for vimrc
if [[ !( -L ~/.vimrc ) ]]; then
echo "~/.vimrc is not a link, it will be replaced to a link to ~/.vim/.vimrc"
vimrc_old=".vimrc_`date +%Y%m%d_%H%M`"
mv ~/.vimrc ~/$vimrc_old
echo "the old .vimrc have been backup as ~/$vimrc_old"
ln -s ~/.vim/.vimrc ~/.vimrc
fi
# make sure git command exists
if ! which git >/dev/null; then
echo "git command not exists, please install git first!"
fi
# make sure that python3 or python is installed
which python3 >/dev/null \
|| which python >/dev/null || ( echo "python and python3 is not installed yet!" && exit 1 )
# make sure that we have installed cmake
which cmake >/dev/null \
|| ( echo "cmake is not installed yet, please install cmake first" && exit 1 )
# make sure that we have installed node
which node >/dev/null \
|| (echo "node is not installed yet, please install nodejs first" && exit 1)
# make sure that npm have been installed
which npm >/dev/null \
|| (echo "npm is not installed yet, please install npm first" && exit 1)
vim +PlugInstall +qall
# install jsbeautify
cd ~/.vim/plugged/vim-jsbeautify && git submodule update --init --recursive
# install youcompleteme, we prefer python3 if installed
if which python3 > /dev/null; then
cd ~/.vim/plugged/YouCompleteMe/ && git submodule update --init --recursive && python3 install.py
else
cd ~/.vim/plugged/YouCompleteMe/ && git submodule update --init --recursive && python install.py
fi
# install autopep8 and flake8 for python code style fix
if which pip3 >/dev/null; then
pip3 install --upgrade autopep8
pip3 install --upgrade flake8
else
pip install --upgrade autopep8
pip install --upgrade flake8
fi
# install ropevim
if which python3; then
cd ~/.vim/plugged/ropevim && python setup.py install
else
cd ~/.vim/plugged/ropevim && python3 setup.py install
fi
# install meteor tern
cd ~/.vim/plugged/tern_for_vim/ && npm install
cd ~/.vim && cp -f post_fix/meteor.json plugged/tern_for_vim/node_modules/tern/defs/meteor.json
echo "Please set your environment variable 'TERM' to 'screen-256color' in order to make the color scheme work"