Created
May 24, 2010 05:18
-
-
Save jgumbley/411550 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
set nocompatible | |
colors wombat | |
map <F2> :NERDTreeToggle<CR> | |
set guioptions-=T | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set softtabstop=4 | |
set autoindent | |
set number | |
let NERDTreeIgnore=['.pyc$', '\~$'] | |
let g:miniBufExplUseSingleClick = 1 | |
let g:miniBufExplorerMoreThanOne = 0 | |
let g:miniBufExplMapWindowNavVim = 1 | |
let g:miniBufExplMapWindowNavArrows = 1 | |
let g:miniBufExplMapCTabSwitchBufs = 1 | |
let g:miniBufExplModSelTarget = 1 | |
if has('title') && (has('gui_running') || &title) | |
set titlestring= | |
set titlestring+=%f\ " file name | |
set titlestring+=%h%m%r%w " flags | |
set titlestring+=\ -\ %{v:progname} " program name | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment