-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvim.sh
More file actions
executable file
·38 lines (27 loc) · 843 Bytes
/
Copy pathvim.sh
File metadata and controls
executable file
·38 lines (27 loc) · 843 Bytes
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
#!/bin/bash
#enviroment
mkdir -p ~/.vim/autoload ~/.vim/bundle
if [ ! -f "~/.vim/autoload/pathogen.vim" ]; then
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
fi
cp .vimrc ~/.vimrc
cd ~/.vim/bundle
#ctags
apt-get install ctags
#supertab
git clone https://github.com/ervandew/supertab.git
#auto-pairs
git clone git://github.com/jiangmiao/auto-pairs.git
git clone https://github.com/scrooloose/nerdcommenter.git
#nerdtree
git clone https://github.com/scrooloose/nerdtree.git
git clone --depth=1 https://github.com/vim-syntastic/syntastic.git
#cscope
apt-get install cscope
git clone https://github.com/chazy/cscope_maps.git
git clone https://github.com/brookhong/cscope.vim.git
#SrcExpl
git clone https://github.com/wesleyche/SrcExpl.git
#Taglist
git clone https://github.com/vim-scripts/taglist.vim.git
cd -