" Vim
" Gabe's vimrc files http://web.cs.uni-bonn.de/~zach/vim
" Please send correction & suggestions to me: zach@cs.uni-bonn.de



"       Options for gui-vim (non-gui options are set in ~/.vimrc)

set guioptions+=b
set title

if has("unix")

	"  unix
	set guifont=8x13
	set guioptions-=i

else

	"  special settings for windoze
	set mousehide
	set guifont=Courier_New:h8
	set guioptions+=a

endif

nmap <Home> 1G
nmap <End> G

"
"   Changes to the default menus
"

10amenu File.Print :update !a2ps -1 --portrait --tabsize=4 --borders=no<CR>
10vmenu File.Print :update !a2ps -1 --portrait --tabsize=4 --borders=no<CR>

