blob: fa0f6851d1b99a901e11dfc8a4cac0312ab14622 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" An example for a gvimrc file.
Bram Moolenaar54f1b7a2016-04-05 22:07:04 +02002" The commands in this are executed when the GUI is started, after the vimrc
3" has been executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004"
5" Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar54f1b7a2016-04-05 22:07:04 +02006" Last change: 2016 Apr 05
Bram Moolenaar071d4272004-06-13 20:20:40 +00007"
8" To use it, copy it to
9" for Unix and OS/2: ~/.gvimrc
10" for Amiga: s:.gvimrc
11" for MS-DOS and Win32: $VIM\_gvimrc
12" for OpenVMS: sys$login:.gvimrc
13
14" Make external commands work through a pipe instead of a pseudo-tty
15"set noguipty
16
17" set the X11 font to use
18" set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
19
20set ch=2 " Make command line two lines high
21
22set mousehide " Hide the mouse when typing text
23
24" Make shift-insert work like in Xterm
25map <S-Insert> <MiddleMouse>
26map! <S-Insert> <MiddleMouse>
27
28" Only do this for Vim version 5.0 and later.
29if version >= 500
30
Bram Moolenaar071d4272004-06-13 20:20:40 +000031 " Switch on syntax highlighting if it wasn't on yet.
32 if !exists("syntax_on")
33 syntax on
34 endif
35
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 " For Win32 version, have "K" lookup the keyword in a help file
37 "if has("win32")
38 " let winhelpfile='windows.hlp'
39 " map K :execute "!start winhlp32 -k <cword> " . winhelpfile <CR>
40 "endif
41
42 " Set nice colors
43 " background for normal text is light grey
44 " Text below the last line is darker grey
45 " Cursor is green, Cyan when ":lmap" mappings are active
46 " Constants are not underlined but have a slightly lighter background
47 highlight Normal guibg=grey90
48 highlight Cursor guibg=Green guifg=NONE
49 highlight lCursor guibg=Cyan guifg=NONE
50 highlight NonText guibg=grey80
51 highlight Constant gui=NONE guibg=grey95
52 highlight Special gui=NONE guibg=grey95
53
54endif