-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gvimrc
45 lines (35 loc) · 982 Bytes
/
.gvimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
" Folding - requires gvim >= 6
if version >= 600
highlight Folded guibg=grey40 guifg=grey60
endif
" Only do this for Vim version 5.0 and later.
if version >= 500
" Switch on syntax highlighting if it wasn't on yet.
if !exists("syntax_on")
syntax on
endif
highlight Normal guibg=Black guifg=Green
highlight Cursor guibg=grey80 guifg=NONE
highlight NonText guibg=grey40
highlight Constant gui=NONE guibg=Black
highlight Special gui=NONE guibg=Black
highlight Comment guifg=grey60
highlight Class guifg=Cyan
highlight Namespace guifg=Blue
highlight MatchParen None gui=underline
set background=light
endif
" Always use console text for warnings, instead of pop-up windows.
set guioptions+=c
set guifont=Bitstream\ Vera\ Sans\ Mono\ 9
set columns=174
set lines=55
:gui
syntax on
highlight Comment guifg=grey60
highlight LineNr guifg=grey30
" Command height = 1 line
set ch=1
" Tell gvim not to beep or flash
set vb t_vb=
vsplit