-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vim-settings-init.sh
executable file
·26 lines (24 loc) · 1.42 KB
/
.vim-settings-init.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
#!/bin/bash
# overlaying other repositories on top
echo Getting plugins
git clone https://github.com/Shougo/neocomplcache .vim/bundle/neocomplcache
git clone https://github.com/scrooloose/nerdcommenter.git .vim/bundle/nerdcommenter
git clone https://github.com/tpope/vim-fugitive.git .vim/bundle/vim-fugitive
git clone https://github.com/derekwyatt/vim-scala.git .vim/bundle/vim-scala
git clone https://github.com/tpope/vim-markdown.git .vim/bundle/vim-markdown
git clone https://github.com/nathanaelkane/vim-command-w.git .vim/bundle/vim-command-w
git clone https://github.com/jboyens/vim-protobuf.git .vim/bundle/vim-protobuf
git clone https://github.com/kien/ctrlp.vim.git .vim/bundle/ctrlp.vim
git clone https://github.com/sjl/splice.vim.git .vim/bundle/splice
git clone https://github.com/tpope/vim-characterize.git .vim/bundle/vim-characterize
git clone https://github.com/bling/vim-airline.git .vim/bundle/vim-airline
git clone https://github.com/jpalardy/vim-slime.git .vim/bundle/vim-slime
git clone https://github.com/Shougo/vimproc.vim.git .vim/bundle/vimproc.vim
git clone https://github.com/scrooloose/syntastic.git .vim/bundle/syntastic
git clone https://github.com/eagletmt/neco-ghc.git .vim/bundle/neco-ghc
git clone https://github.com/godlygeek/tabular.git .vim/bundle/tabular
git clone https://github.com/pbrisbin/html-template-syntax.git .vim/bundle/html-template-syntax
echo Building natives
pushd .vim/bundle/vimproc.vim
make
popd