forked from ma6174/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDark2.vim
91 lines (58 loc) · 1.08 KB
/
Dark2.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
"
" A color scheme that uses the colors from "Dark", but the arrangement of
" "Light".
"
" Restore default colors
hi clear
set background=dark
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "Dark2"
hi Cursor guibg=IndianRed
hi Normal guibg=Black guifg=GhostWhite
hi NonText guibg=grey10 guifg=yellow3
hi Folded guifg=grey90 guibg=grey45
"
" Brown / Tan
"
hi Statement guifg=tan
"
" Red
"
hi PreProc guifg=#FF7070 gui=none
hi Error guibg=red3
hi WarningMsg guifg=red guibg=GhostWhite gui=bold
"
" Green
"
hi Comment guifg=#80CC80 gui=none
hi Visual gui=reverse guibg=fg guifg=darkolivegreen
"
" Yellow
"
hi Special guifg=#DDDD00 gui=none
"
" Blue
"
hi Identifier guifg=SkyBlue gui=none
hi Search guibg=LightSkyBlue3 guifg=black gui=none
"hi IncSearch guibg=LightSkyBlue3 guifg=yellow gui=bold
hi IncSearch guibg=blue guifg=yellow gui=bold
hi link Function Identifier
"
" Purple
"
hi Type guifg=LightMagenta gui=none
"
" Cyan
"
"
" Orange
"
hi String guifg=orange2 gui=none
"
" Misc
"
hi! link SpecialKey Identifier
hi! link Directory Identifier