Skip to content

Instantly share code, notes, and snippets.

@bradsokol
Last active January 6, 2016 01:29
Show Gist options
  • Save bradsokol/041d11122bbfbbbf7a1d to your computer and use it in GitHub Desktop.
Save bradsokol/041d11122bbfbbbf7a1d to your computer and use it in GitHub Desktop.
#! /bin/bash
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
cd ~/.vim/bundle
git clone https://github.com/kien/ctrlp.vim.git
git clone https://github.com/scrooloose/nerdtree.git
git clone https://github.com/ervandew/supertab.git
git clone https://github.com/bling/vim-airline.git
git clone https://github.com/tpope/vim-commentary.git
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/mhinz/vim-signify
git clone https://github.com/othree/html5.vim.git
git clone https://github.com/scrooloose/syntastic.git
if [ "$(uname -s)" == "Darwin" ]; then
git clone https://github.com/rizzatti/dash.vim.git
fi
cd ~/.vim
mkdir -p after/ftplugin
cat << EOF > after/ftplugin/ruby.vim
set ts=2 sw=2 expandtab
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment