Skip to content

Instantly share code, notes, and snippets.

@fervisa
Forked from apux/1_vim_short.md
Last active January 14, 2017 19:05
Show Gist options
  • Save fervisa/8cf99147b5d4a9169359 to your computer and use it in GitHub Desktop.
Save fervisa/8cf99147b5d4a9169359 to your computer and use it in GitHub Desktop.
mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -Sso ~/.vim/autoload/pathogen.vim \
    https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
set nocompatible
execute pathogen#infect()
syntax on
filetype plugin indent on
set shiftwidth=2
set tabstop=2
set expandtab
set ruler
cd ~/.vim/bundle
git clone https://github.com/vim-ruby/vim-ruby.git
git clone https://github.com/scrooloose/nerdtree.git
git clone https://github.com/tpope/vim-rails.git
git clone https://github.com/kchmck/vim-coffee-script.git
git clone https://github.com/tpope/vim-surround.git
git clone https://github.com/tpope/vim-repeat.git
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/godlygeek/tabular.git
git clone https://github.com/kien/ctrlp.vim.git
git clone https://github.com/tsaleh/vim-matchit.git
git clone https://github.com/plasticboy/vim-markdown.git
git clone https://github.com/mattn/webapi-vim.git
git clone https://github.com/mattn/gist-vim.git
git clone https://github.com/tpope/vim-cucumber.git
git clone https://github.com/tomtom/tlib_vim.git
git clone https://github.com/MarcWeber/vim-addon-mw-utils.git
git clone https://github.com/garbas/vim-snipmate.git
git clone https://github.com/LogicalBricks/vim-snippets.git
git clone https://github.com/thoughtbot/vim-rspec.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment