Last active
December 21, 2015 05:18
-
-
Save amadeus/6255562 to your computer and use it in GitHub Desktop.
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
" 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