1"
2" cream-gui.vim -- portion of Cream available only to the GUI (gVim)
3"
4" Cream -- An easy-to-use configuration of the famous Vim text editor
5" [ http://cream.sourceforge.net ] Copyright (C) 2001-2011 Steve Hall
6"
7" License:
8" This program is free software; you can redistribute it and/or modify
9" it under the terms of the GNU General Public License as published by
10" the Free Software Foundation; either version 3 of the License, or
11" (at your option) any later version.
12" [ http://www.gnu.org/licenses/gpl.html ]
13"
14" This program is distributed in the hope that it will be useful, but
15" WITHOUT ANY WARRANTY; without even the implied warranty of
16" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17" General Public License for more details.
18"
19" You should have received a copy of the GNU General Public License
20" along with this program; if not, write to the Free Software
21" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22" 02111-1307, USA.
23"
24
25if !has("gui_running")
26	finish
27endif
28
29" initial margin to leave at top of screen when fitting the gui to
30" accommodate top menu bars
31set guiheadroom=50
32
33" cursor
34set guicursor=
35	\n:block-Error/lCursor-blinkwait700-blinkoff50-blinkon800,
36	\c:block-Error/lCursor,
37	\o:hor50-Error,
38	\i-ci-v:ver25-Cursor/lCursor,
39	\r-cr:block-Cursor/lCursor,
40	\sm:block-Cursor
41
42
43" number of pixels inserted between font characters. (default 0, 1 for Win32 GUI)
44"set linespace=
45
46" scrollbars
47set guioptions+=r	" Right hand scroll bar always present
48set guioptions-=L	" Left hand scroll bar always present when vertically split
49
50" 1}}}
51" vim:foldmethod=marker
52