Last active
August 29, 2015 13:58
-
-
Save Integralist/10008871 to your computer and use it in GitHub Desktop.
For up to date list of plugins please see my Fresh Install repository: https://github.com/Integralist/Fresh-Install/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd "$HOME/.vim/bundle" | |
plugins=( airblade/vim-gitgutter \ | |
ap/vim-css-color \ | |
bling/vim-airline \ | |
edkolev/tmuxline.vim \ | |
ervandew/supertab \ | |
gcmt/wildfire.vim \ | |
godlygeek/tabular \ | |
kien/ctrlp.vim \ | |
kien/rainbow_parentheses.vim \ | |
MattesGroeger/vim-bookmarks \ | |
mattn/emmet-vim \ | |
mattn/webapi-vim \ | |
mileszs/ack.vim \ | |
othree/html5.vim \ | |
scrooloose/nerdtree \ | |
scrooloose/syntastic \ | |
sheerun/vim-polyglot \ | |
t9md/vim-choosewin \ | |
tpope/vim-commentary \ | |
tpope/vim-cucumber \ | |
tpope/vim-dispatch \ | |
tpope/vim-endwise \ | |
tpope/vim-fugitive \ | |
tpope/vim-haml \ | |
tpope/vim-markdown \ | |
tpope/vim-repeat \ | |
tpope/vim-surround \ | |
vim-scripts/camelcasemotion \ | |
vim-scripts/Gist.vim \ | |
vim-scripts/paredit.vim \ | |
vim-scripts/Tabmerge \ | |
vim-scripts/textutil.vim \ | |
vim-scripts/ZoomWin \ | |
wellle/targets.vim ) | |
for item in "${plugins[@]}" | |
do | |
git clone "https://github.com/$item.git" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: You can make the above script a bit more defensive by first checking if the directory exists or not...