forked from tzarskyz/dotfiles-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathogen_kickstart.sh
executable file
·51 lines (47 loc) · 2.06 KB
/
pathogen_kickstart.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
#!/usr/bin/env dash
set -e
if [ -e $HOME/.vim ]; then
printf "Backing up current .vim directory to $HOME/old-vim...\n"
mv $HOME/.vim $HOME/old-vim
fi
mkdir $HOME/.vim
mkdir $HOME/.vim/autoload
mkdir $HOME/.vim/bundle
cd $HOME/.vim/autoload
curl -so pathogen.vim \
https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim
cd $HOME/.vim/bundle
git clone https://github.com/mileszs/ack.vim.git
git clone https://github.com/jiangmiao/auto-pairs.git
git clone https://github.com/sjl/strftimedammit.vim.git
git clone https://github.com/mattn/gist-vim.git
git clone https://github.com/mattn/webapi-vim.git
git clone https://github.com/tpope/vim-unimpaired
git clone https://github.com/tpope/vim-commentary
git clone https://github.com/tpope/vim-eunuch
git clone https://github.com/tpope/vim-ragtag.git
git clone https://github.com/tpope/vim-endwise.git
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/tpope/vim-git.git
git clone https://github.com/tpope/vim-repeat.git
git clone https://github.com/tpope/vim-surround.git
git clone https://github.com/kana/vim-textobj-lastpat.git
git clone https://github.com/kana/vim-textobj-user.git
git clone https://github.com/bronson/vim-trailing-whitespace.git
git clone https://github.com/telemachus/vim-varia.git
git clone https://github.com/kchmck/vim-coffee-script.git
git clone https://github.com/lukerandall/haskellmode-vim.git
git clone https://github.com/gregsexton/MatchTag.git
git clone https://github.com/pangloss/vim-javascript.git
git clone http://github.com/sukima/vim-markdown.git
git clone https://github.com/telemachus/vim-perlbrew.git
git clone http://github.com/tpope/vim-rake.git
git clone https://github.com/vim-ruby/vim-ruby.git
git clone https://github.com/nelstrom/vim-textobj-rubyblock.git
git clone https://github.com/cakebaker/scss-syntax.vim.git
git clone https://github.com/sunaku/vim-ruby-minitest
git clone https://github.com/altercation/vim-colors-solarized.git
git clone https://github.com/wincent/Command-T.git
cd $HOME/.vim/bundle/Command-T/ruby/command-t
/usr/bin/ruby extconf.rb
make