" System-wide gvimrc file for ALTLinux distribution
" The commands in this are executed when the GUI is started.
"
" Maintainer:	vim development team <vim@packages.altlinux.ru>
" Last change:	2003 Apr 25 by Sir Raorn <raorn@altlinux.ru>
"
" set (language-dependant) X11 font to use
if filereadable( $VIMRUNTIME . "/langrc/" . $LANG . ".vim" )
	exe "so " . $VIMRUNTIME . "/langrc/" . $LANG . ".vim"
else
	set guifont=-*-fixed-medium-r-normal-*-*-130-*-*-*-*-*-*
endif

set ch=2		" Make command line two lines high
set mousehide		" Hide the mouse when typing text

" Make shift-insert work like in Xterm
map <S-Insert> <MiddleMouse>
map! <S-Insert> <MiddleMouse>

" Enable "title" and "icon" features disabled in vimrc
if has("title")
	set title
	set icon
endif
