« Back to Index
View original Gist on GitHub
vim-plugins.sh
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