Skip to content

Instantly share code, notes, and snippets.

@amadeus
Last active December 21, 2015 05:18
Show Gist options
  • Save amadeus/6255562 to your computer and use it in GitHub Desktop.
Save amadeus/6255562 to your computer and use it in GitHub Desktop.
" My First .vimrc
" Run this command in Terminal to setup Vundle and appropriate directories:
" mkdir ~/.vim ~/.vim/bundle; git clone https://github.com/gmarik/vundle.git .vim/bundle/vundle
" Always set nocompatible, seriously
set nocompatible
" Required for Vundle
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Allow Vundle to manage itself, required
Bundle 'gmarik/vundle'
" My Bundles
" Back to normal .vimrc
filetype plugin indent on
syntax on
" My customizations here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment