This repository was archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathgrayorange.vim
96 lines (85 loc) · 1.9 KB
/
grayorange.vim
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
" Vim color file
" Maintainer: Charles <[email protected]>
" Last Change: 11 June 2004
" URL: http://
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
" your pick:
" set background=light
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="GrayOrange"
" OR
" highlight clear Normal
" set background&
" highlight clear
" if &background == "light"
" highlight Error ...
" ...
" else
" highlight Error ...
" ...
" endif
" A good way to see what your colorscheme does is to follow this procedure:
" :w
" :so %
"
" Then to see what the current setting is use the highlight command.
" For example,
" :hi Cursor
" gives
" Cursor xxx guifg=bg guibg=fg
hi Normal guifg=beige guibg=#204040
" Uncomment and complete the commands you want to change from the default.
"hi Cursor guibg=red
"hi CursorIM gui=inverse
"hi Directory
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
"hi VertSplit
"hi Folded
"hi FoldColumn
"hi IncSearch
hi LineNr guifg=gray80 "guibg=black guibg=gray50
"hi ModeMsg
"hi MoreMsg
"hi NonText guibg=gray50
"hi Question
"hi Search
"hi SpecialKey
"hi StatusLine
"hi StatusLineNC
"hi Title
"hi Visual
"hi VisualNOS
"hi WarningMsg
"hi WildMenu
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
hi Comment guifg=darkkhaki gui=underline guibg=gray30
" hi Comment guifg=darkkhaki guibg=gray30
hi Constant guifg=navajowhite
hi Identifier guifg=lavender
" hi Function guibg=gray60
hi Statement guifg=darkseagreen gui=bold
hi PreProc guifg=darkseagreen
hi Type guifg=goldenrod
hi Special guifg=navajowhite gui=underline
hi Underlined gui=underline
hi Ignore guifg=black
hi Error guifg=white
hi Todo guibg=gold guifg=black gui=NONE
hi Operator guifg=gold
hi Title guifg=white
hi VimError guifg=orange gui=bold
hi SpecialKey guifg=gold