While I am, predominantly an Emacs user, I concocted myself a .vimrc file, in an attempt to see how the other half lives. set tabstop=4 set shiftwidth=4 set guioptions-=T set ruler set incsearch set noerrorbells set novisualbell set cursorline set number set numberwidth=5 set showcmd set nowrap set autoindent syntax on :inoremap <CR> x<BS><CR>
if has("gui_running") set guifont=Inconsolata\ 11 set lines=50 set columns=80 set background=light endif
|