Created
March 29, 2010 21:39
-
-
Save davidjrice/348446 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| " Colors ********************************************************************** | |
| "set t_Co=256 " 256 colors | |
| set background=dark | |
| syntax on " syntax highlighting | |
| colorscheme ir_black | |
| " Line Numbers | |
| set number | |
| " Fonts | |
| set gfn=Bitstream\ Vera\ Sans\ Mono\ 14 | |
| " MacVim | |
| set guifont=Bitstream_Vera_Sans_Mono:h14 | |
| set fullscreen | |
| " Indentation | |
| set expandtab | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set autoindent | |
| set smartindent | |
| " Folding | |
| set foldmethod=syntax | |
| set foldcolumn=4 | |
| set nofoldenable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment