Created
October 2, 2011 03:10
-
-
Save jaysonrowe/1256977 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
| filetype on | |
| set nocompatible | |
| set nu | |
| set viminfo^=! | |
| set tabstop=2 | |
| set bs=2 | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set nocp incsearch | |
| set ai | |
| set columns=100 | |
| set lines=50 | |
| set expandtab | |
| set smarttab | |
| set cinoptions=:0,p0,t0 | |
| set cinwords=if,else,while,do,for,switch,case | |
| set formatoptions=tcqr | |
| set cindent | |
| set autoindent | |
| set showmatch | |
| set mat=5 | |
| set list | |
| set history=256 | |
| set ruler | |
| set nowrap | |
| set timeoutlen=250 | |
| set lcs=tab:\ \ ,eol:$,trail:~,extends:>,precedes:< | |
| set novisualbell | |
| set noerrorbells | |
| set laststatus=2 | |
| set mousehide | |
| set mouse=a | |
| set backup | |
| set backupdir=~/.vim/backups | |
| set directory=~/.vim/tmp | |
| set guifont=Ubuntu\ Mono\ 11 | |
| let g:rubycomplete_rails = 1 | |
| let g:miniBufExplMapWindowNavVim = 1 | |
| let g:miniBufExplMapWindowNavArrows = 1 | |
| let g:miniBufExplMapCTabSwitchBufs = 1 | |
| let g:miniBufExplModSelTarget = 1 | |
| map <silent> <m-p> :cp <cr> | |
| map <silent> <m-n> :cn <cr> | |
| syntax on | |
| colorscheme vividchalk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment