" Gabe's vimrc files http://www.igd.fhg.de/~zach/vim
"
"   Options understood by all vi's
"
set autowrite showmode tabstop=4 shiftwidth=4 autoindent
set nowriteany
"
"   make vi execute the ./.exrc; make vim exec ./.vimrc
"
set exrc
"
"   Cursor mappings of vt100 (just in case)
"
map [A k
map [B j
map [D h
map [C l
" vanilla vi will not understand the following, but that doesn't hurt
" since it occurs at the end of .exrc
imap [A k
imap [B j
imap [D h
imap [C l
