-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·36 lines (26 loc) · 904 Bytes
/
build.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
#!/bin/sh
set -x
vimdir=.jayvim
#install pathogen
echo "install pathogen"
mkdir -p ~/${vimdir}/autoload ~/${vimdir}/bundle && \
curl -LSso ~/${vimdir}/autoload/pathogen.vim https://tpo.pe/pathogen.vim
echo install symbolic file
ln -s .jayvim/vimrc ~/.vimrc
ln -s .jayvim ~/.vim
ln -s .jayvim/vimrc.map ~/.vimrc.map
cd ~/${vimdir}/bundle
echo "install nerdtree"
git clone https://github.com/preservim/nerdtree.git
echo "install leaderf"
git clone https://github.com/Yggdroot/LeaderF.git
echo "install nerdComment"
git clone https://github.com/scrooloose/nerdcommenter.git
echo "install syntastic"
git clone https://github.com/scrooloose/syntastic.git
echo "install neocomplete"
git clone https://github.com/Shougo/neocomplcache.vim.git
echo "install tagbar"
git clone https://github.com/majutsushi/tagbar.git
echo "install cscope"
git clone https://github.com/brookhong/cscope.vim.git