tomkersten-vixploder 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +105 -0
- data/PostInstall.txt +21 -0
- data/README.rdoc +131 -0
- data/Rakefile +21 -0
- data/bin/256colors2.pl +63 -0
- data/bin/colortest +365 -0
- data/bin/vixplode +10 -0
- data/lib/dotfiles/aliases +30 -0
- data/lib/dotfiles/gvimrc +20 -0
- data/lib/dotfiles/vim/.VimballRecord +2 -0
- data/lib/dotfiles/vim/after/ftplugin/actionscript_snippets.vim +9 -0
- data/lib/dotfiles/vim/after/ftplugin/aspvbs_snippets.vim +17 -0
- data/lib/dotfiles/vim/after/ftplugin/c_snippets.vim +58 -0
- data/lib/dotfiles/vim/after/ftplugin/css_snippets.vim +30 -0
- data/lib/dotfiles/vim/after/ftplugin/django_model_snippets.vim +61 -0
- data/lib/dotfiles/vim/after/ftplugin/django_template_snippets.vim +32 -0
- data/lib/dotfiles/vim/after/ftplugin/f-script_snippets.vim +14 -0
- data/lib/dotfiles/vim/after/ftplugin/haskell_snippets.vim +9 -0
- data/lib/dotfiles/vim/after/ftplugin/html_snippets.vim +57 -0
- data/lib/dotfiles/vim/after/ftplugin/java_snippets.vim +52 -0
- data/lib/dotfiles/vim/after/ftplugin/javascript_snippets.vim +10 -0
- data/lib/dotfiles/vim/after/ftplugin/latex_snippets.vim +13 -0
- data/lib/dotfiles/vim/after/ftplugin/logo_snippets.vim +9 -0
- data/lib/dotfiles/vim/after/ftplugin/markdown_snippets.vim +10 -0
- data/lib/dotfiles/vim/after/ftplugin/movable_type_snippets.vim +14 -0
- data/lib/dotfiles/vim/after/ftplugin/objc_snippets.vim +53 -0
- data/lib/dotfiles/vim/after/ftplugin/ocaml_snippets.vim +26 -0
- data/lib/dotfiles/vim/after/ftplugin/perl_snippets.vim +23 -0
- data/lib/dotfiles/vim/after/ftplugin/php_snippets.vim +30 -0
- data/lib/dotfiles/vim/after/ftplugin/phpdoc_snippets.vim +19 -0
- data/lib/dotfiles/vim/after/ftplugin/propel_snippets.vim +14 -0
- data/lib/dotfiles/vim/after/ftplugin/python_snippets.vim +202 -0
- data/lib/dotfiles/vim/after/ftplugin/rails_snippets.vim +54 -0
- data/lib/dotfiles/vim/after/ftplugin/ruby_snippets.vim +32 -0
- data/lib/dotfiles/vim/after/ftplugin/sh_snippets.vim +12 -0
- data/lib/dotfiles/vim/after/ftplugin/slate_snippets.vim +19 -0
- data/lib/dotfiles/vim/after/ftplugin/smarty_snippets.vim +35 -0
- data/lib/dotfiles/vim/after/ftplugin/symfony_snippets.vim +21 -0
- data/lib/dotfiles/vim/after/ftplugin/tcl_snippets.vim +14 -0
- data/lib/dotfiles/vim/after/ftplugin/template_toolkit_snippets.vim +13 -0
- data/lib/dotfiles/vim/after/ftplugin/tex_snippets.vim +13 -0
- data/lib/dotfiles/vim/after/ftplugin/xhtml_snippets.vim +48 -0
- data/lib/dotfiles/vim/autoload/fakeclip.vim +253 -0
- data/lib/dotfiles/vim/autoload/rails.vim +4377 -0
- data/lib/dotfiles/vim/autoload/rubycomplete.vim +802 -0
- data/lib/dotfiles/vim/colors/inkpot.vim +212 -0
- data/lib/dotfiles/vim/colors/ir_black.vim +212 -0
- data/lib/dotfiles/vim/colors/ir_black_mod.vim +213 -0
- data/lib/dotfiles/vim/colors/railscasts.vim +100 -0
- data/lib/dotfiles/vim/colors/rubyblue.vim +74 -0
- data/lib/dotfiles/vim/colors/twilight.vim +75 -0
- data/lib/dotfiles/vim/colors/twilight2.vim +74 -0
- data/lib/dotfiles/vim/colors/wombat256.vim +302 -0
- data/lib/dotfiles/vim/compiler/eruby.vim +41 -0
- data/lib/dotfiles/vim/compiler/ruby.vim +68 -0
- data/lib/dotfiles/vim/compiler/rubyunit.vim +35 -0
- data/lib/dotfiles/vim/doc/NERD_tree.txt +1235 -0
- data/lib/dotfiles/vim/doc/fakeclip.txt +190 -0
- data/lib/dotfiles/vim/doc/matchit.txt +406 -0
- data/lib/dotfiles/vim/doc/project.txt +710 -0
- data/lib/dotfiles/vim/doc/rails.txt +1123 -0
- data/lib/dotfiles/vim/doc/snippets_emu.txt +354 -0
- data/lib/dotfiles/vim/doc/surround.txt +218 -0
- data/lib/dotfiles/vim/doc/tags +433 -0
- data/lib/dotfiles/vim/filetype.vim +13 -0
- data/lib/dotfiles/vim/ftdetect/gist.vim +3 -0
- data/lib/dotfiles/vim/ftdetect/ruby.vim +14 -0
- data/lib/dotfiles/vim/ftplugin/eruby.vim +101 -0
- data/lib/dotfiles/vim/ftplugin/ruby.vim +230 -0
- data/lib/dotfiles/vim/indent/eruby.vim +73 -0
- data/lib/dotfiles/vim/indent/ruby.vim +373 -0
- data/lib/dotfiles/vim/plugin/NERD_tree.vim +3536 -0
- data/lib/dotfiles/vim/plugin/comments.vim +321 -0
- data/lib/dotfiles/vim/plugin/fakeclip.vim +174 -0
- data/lib/dotfiles/vim/plugin/fuzzyfinder.vim +1676 -0
- data/lib/dotfiles/vim/plugin/fuzzyfinder_textmate.vim +150 -0
- data/lib/dotfiles/vim/plugin/gist.vim +241 -0
- data/lib/dotfiles/vim/plugin/gitdiff.vim +141 -0
- data/lib/dotfiles/vim/plugin/matchit.vim +812 -0
- data/lib/dotfiles/vim/plugin/mru.vim +787 -0
- data/lib/dotfiles/vim/plugin/rails.vim +310 -0
- data/lib/dotfiles/vim/plugin/rspec.vim +12 -0
- data/lib/dotfiles/vim/plugin/snippets.vim +17 -0
- data/lib/dotfiles/vim/plugin/snippetsEmu.vim +973 -0
- data/lib/dotfiles/vim/plugin/supertab.vim +531 -0
- data/lib/dotfiles/vim/plugin/surround.vim +632 -0
- data/lib/dotfiles/vim/ref_vimrc +80 -0
- data/lib/dotfiles/vim/ruby/fuzzy_file_finder.rb +353 -0
- data/lib/dotfiles/vim/syntax/eruby.vim +85 -0
- data/lib/dotfiles/vim/syntax/haml.vim +113 -0
- data/lib/dotfiles/vim/syntax/mkd.vim +86 -0
- data/lib/dotfiles/vim/syntax/ruby.vim +324 -0
- data/lib/dotfiles/vim/syntax/sass.vim +93 -0
- data/lib/dotfiles/vimrc +269 -0
- data/lib/vixplode/cli.rb +73 -0
- data/lib/vixploder.rb +6 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/vixplode_cli_spec.rb +15 -0
- data/spec/vixploder_spec.rb +7 -0
- data/tasks/rspec.rake +21 -0
- metadata +202 -8
@@ -0,0 +1,212 @@
|
|
1
|
+
" Vim color file
|
2
|
+
" Name: inkpot.vim
|
3
|
+
" Maintainer: Ciaran McCreesh <ciaran.mccreesh@blueyonder.co.uk>
|
4
|
+
" This should work in the GUI, rxvt-unicode (88 colour mode) and xterm (256
|
5
|
+
" colour mode). It won't work in 8/16 colour terminals.
|
6
|
+
"
|
7
|
+
" To use a black background, :let g:inkpot_black_background = 1
|
8
|
+
|
9
|
+
set background=dark
|
10
|
+
hi clear
|
11
|
+
if exists("syntax_on")
|
12
|
+
syntax reset
|
13
|
+
endif
|
14
|
+
|
15
|
+
let colors_name = "inkpot"
|
16
|
+
|
17
|
+
" map a urxvt cube number to an xterm-256 cube number
|
18
|
+
fun! <SID>M(a)
|
19
|
+
return strpart("0135", a:a, 1) + 0
|
20
|
+
endfun
|
21
|
+
|
22
|
+
" map a urxvt colour to an xterm-256 colour
|
23
|
+
fun! <SID>X(a)
|
24
|
+
if &t_Co == 88
|
25
|
+
return a:a
|
26
|
+
else
|
27
|
+
if a:a == 8
|
28
|
+
return 237
|
29
|
+
elseif a:a < 16
|
30
|
+
return a:a
|
31
|
+
elseif a:a > 79
|
32
|
+
return 232 + (3 * (a:a - 80))
|
33
|
+
else
|
34
|
+
let l:b = a:a - 16
|
35
|
+
let l:x = l:b % 4
|
36
|
+
let l:y = (l:b / 4) % 4
|
37
|
+
let l:z = (l:b / 16)
|
38
|
+
return 16 + <SID>M(l:x) + (6 * <SID>M(l:y)) + (36 * <SID>M(l:z))
|
39
|
+
endif
|
40
|
+
endif
|
41
|
+
endfun
|
42
|
+
|
43
|
+
if ! exists("g:inkpot_black_background")
|
44
|
+
let g:inkpot_black_background = 0
|
45
|
+
endif
|
46
|
+
|
47
|
+
if has("gui_running")
|
48
|
+
if ! g:inkpot_black_background
|
49
|
+
hi Normal gui=NONE guifg=#cfbfad guibg=#1e1e27
|
50
|
+
else
|
51
|
+
hi Normal gui=NONE guifg=#cfbfad guibg=#000000
|
52
|
+
endif
|
53
|
+
|
54
|
+
hi IncSearch gui=BOLD guifg=#303030 guibg=#cd8b60
|
55
|
+
hi Search gui=NONE guifg=#303030 guibg=#cd8b60
|
56
|
+
hi ErrorMsg gui=BOLD guifg=#ffffff guibg=#ce4e4e
|
57
|
+
hi WarningMsg gui=BOLD guifg=#ffffff guibg=#ce8e4e
|
58
|
+
hi ModeMsg gui=BOLD guifg=#7e7eae guibg=NONE
|
59
|
+
hi MoreMsg gui=BOLD guifg=#7e7eae guibg=NONE
|
60
|
+
hi Question gui=BOLD guifg=#ffcd00 guibg=NONE
|
61
|
+
|
62
|
+
hi StatusLine gui=BOLD guifg=#b9b9b9 guibg=#3e3e5e
|
63
|
+
hi User1 gui=BOLD guifg=#00ff8b guibg=#3e3e5e
|
64
|
+
hi User2 gui=BOLD guifg=#7070a0 guibg=#3e3e5e
|
65
|
+
hi StatusLineNC gui=NONE guifg=#b9b9b9 guibg=#3e3e5e
|
66
|
+
hi VertSplit gui=NONE guifg=#b9b9b9 guibg=#3e3e5e
|
67
|
+
|
68
|
+
hi WildMenu gui=BOLD guifg=#eeeeee guibg=#6e6eaf
|
69
|
+
|
70
|
+
hi MBENormal guifg=#cfbfad guibg=#2e2e3f
|
71
|
+
hi MBEChanged guifg=#eeeeee guibg=#2e2e3f
|
72
|
+
hi MBEVisibleNormal guifg=#cfcfcd guibg=#4e4e8f
|
73
|
+
hi MBEVisibleChanged guifg=#eeeeee guibg=#4e4e8f
|
74
|
+
|
75
|
+
hi DiffText gui=NONE guifg=#ffffcd guibg=#4a2a4a
|
76
|
+
hi DiffChange gui=NONE guifg=#ffffcd guibg=#306b8f
|
77
|
+
hi DiffDelete gui=NONE guifg=#ffffcd guibg=#6d3030
|
78
|
+
hi DiffAdd gui=NONE guifg=#ffffcd guibg=#306d30
|
79
|
+
|
80
|
+
hi Cursor gui=NONE guifg=#404040 guibg=#8b8bff
|
81
|
+
hi lCursor gui=NONE guifg=#404040 guibg=#8fff8b
|
82
|
+
hi CursorIM gui=NONE guifg=#404040 guibg=#8b8bff
|
83
|
+
|
84
|
+
hi Folded gui=NONE guifg=#cfcfcd guibg=#4b208f
|
85
|
+
hi FoldColumn gui=NONE guifg=#8b8bcd guibg=#2e2e2e
|
86
|
+
|
87
|
+
hi Directory gui=NONE guifg=#00ff8b guibg=NONE
|
88
|
+
hi LineNr gui=NONE guifg=#8b8bcd guibg=#2e2e2e
|
89
|
+
hi NonText gui=BOLD guifg=#8b8bcd guibg=NONE
|
90
|
+
hi SpecialKey gui=BOLD guifg=#ab60ed guibg=NONE
|
91
|
+
hi Title gui=BOLD guifg=#af4f4b guibg=NONE
|
92
|
+
hi Visual gui=NONE guifg=#eeeeee guibg=#4e4e8f
|
93
|
+
|
94
|
+
hi Comment gui=NONE guifg=#cd8b00 guibg=NONE
|
95
|
+
hi Constant gui=NONE guifg=#ffcd8b guibg=NONE
|
96
|
+
hi String gui=NONE guifg=#ffcd8b guibg=#404040
|
97
|
+
hi Error gui=NONE guifg=#ffffff guibg=#6e2e2e
|
98
|
+
hi Identifier gui=NONE guifg=#ff8bff guibg=NONE
|
99
|
+
hi Ignore gui=NONE
|
100
|
+
hi Number gui=NONE guifg=#f0ad6d guibg=NONE
|
101
|
+
hi PreProc gui=NONE guifg=#409090 guibg=NONE
|
102
|
+
hi Special gui=NONE guifg=#c080d0 guibg=NONE
|
103
|
+
hi SpecialChar gui=NONE guifg=#c080d0 guibg=#404040
|
104
|
+
hi Statement gui=NONE guifg=#808bed guibg=NONE
|
105
|
+
hi Todo gui=BOLD guifg=#303030 guibg=#d0a060
|
106
|
+
hi Type gui=NONE guifg=#ff8bff guibg=NONE
|
107
|
+
hi Underlined gui=BOLD guifg=#df9f2d guibg=NONE
|
108
|
+
hi TaglistTagName gui=BOLD guifg=#808bed guibg=NONE
|
109
|
+
|
110
|
+
hi perlSpecialMatch gui=NONE guifg=#c080d0 guibg=#404040
|
111
|
+
hi perlSpecialString gui=NONE guifg=#c080d0 guibg=#404040
|
112
|
+
|
113
|
+
hi cSpecialCharacter gui=NONE guifg=#c080d0 guibg=#404040
|
114
|
+
hi cFormat gui=NONE guifg=#c080d0 guibg=#404040
|
115
|
+
|
116
|
+
hi doxygenBrief gui=NONE guifg=#fdab60 guibg=NONE
|
117
|
+
hi doxygenParam gui=NONE guifg=#fdd090 guibg=NONE
|
118
|
+
hi doxygenPrev gui=NONE guifg=#fdd090 guibg=NONE
|
119
|
+
hi doxygenSmallSpecial gui=NONE guifg=#fdd090 guibg=NONE
|
120
|
+
hi doxygenSpecial gui=NONE guifg=#fdd090 guibg=NONE
|
121
|
+
hi doxygenComment gui=NONE guifg=#ad7b20 guibg=NONE
|
122
|
+
hi doxygenSpecial gui=NONE guifg=#fdab60 guibg=NONE
|
123
|
+
hi doxygenSpecialMultilineDesc gui=NONE guifg=#ad600b guibg=NONE
|
124
|
+
hi doxygenSpecialOnelineDesc gui=NONE guifg=#ad600b guibg=NONE
|
125
|
+
|
126
|
+
if v:version >= 700
|
127
|
+
hi Pmenu gui=NONE guifg=#eeeeee guibg=#4e4e8f
|
128
|
+
hi PmenuSel gui=BOLD guifg=#eeeeee guibg=#2e2e3f
|
129
|
+
hi PmenuSbar gui=BOLD guifg=#eeeeee guibg=#6e6eaf
|
130
|
+
hi PmenuThumb gui=BOLD guifg=#eeeeee guibg=#6e6eaf
|
131
|
+
|
132
|
+
hi SpellBad gui=undercurl guisp=#cc6666
|
133
|
+
hi SpellRare gui=undercurl guisp=#cc66cc
|
134
|
+
hi SpellLocal gui=undercurl guisp=#cccc66
|
135
|
+
hi SpellCap gui=undercurl guisp=#66cccc
|
136
|
+
|
137
|
+
hi MatchParen gui=NONE guifg=#404040 guibg=#8fff8b
|
138
|
+
endif
|
139
|
+
else
|
140
|
+
if ! g:inkpot_black_background
|
141
|
+
exec "hi Normal cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(80)
|
142
|
+
else
|
143
|
+
exec "hi Normal cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(16)
|
144
|
+
endif
|
145
|
+
|
146
|
+
exec "hi IncSearch cterm=BOLD ctermfg=" . <SID>X(80) . " ctermbg=" . <SID>X(73)
|
147
|
+
exec "hi Search cterm=NONE ctermfg=" . <SID>X(80) . " ctermbg=" . <SID>X(73)
|
148
|
+
exec "hi ErrorMsg cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(48)
|
149
|
+
exec "hi WarningMsg cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(68)
|
150
|
+
exec "hi ModeMsg cterm=BOLD ctermfg=" . <SID>X(38) . " ctermbg=" . "NONE"
|
151
|
+
exec "hi MoreMsg cterm=BOLD ctermfg=" . <SID>X(38) . " ctermbg=" . "NONE"
|
152
|
+
exec "hi Question cterm=BOLD ctermfg=" . <SID>X(52) . " ctermbg=" . "NONE"
|
153
|
+
|
154
|
+
exec "hi StatusLine cterm=BOLD ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(81)
|
155
|
+
exec "hi User1 cterm=BOLD ctermfg=" . <SID>X(28) . " ctermbg=" . <SID>X(81)
|
156
|
+
exec "hi User2 cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(81)
|
157
|
+
exec "hi StatusLineNC cterm=NONE ctermfg=" . <SID>X(84) . " ctermbg=" . <SID>X(81)
|
158
|
+
exec "hi VertSplit cterm=NONE ctermfg=" . <SID>X(84) . " ctermbg=" . <SID>X(81)
|
159
|
+
|
160
|
+
exec "hi WildMenu cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(38)
|
161
|
+
|
162
|
+
exec "hi MBENormal ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(81)
|
163
|
+
exec "hi MBEChanged ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(81)
|
164
|
+
exec "hi MBEVisibleNormal ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(82)
|
165
|
+
exec "hi MBEVisibleChanged ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(82)
|
166
|
+
|
167
|
+
exec "hi DiffText cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(34)
|
168
|
+
exec "hi DiffChange cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(17)
|
169
|
+
exec "hi DiffDelete cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(32)
|
170
|
+
exec "hi DiffAdd cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(20)
|
171
|
+
|
172
|
+
exec "hi Folded cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(35)
|
173
|
+
exec "hi FoldColumn cterm=NONE ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(80)
|
174
|
+
|
175
|
+
exec "hi Directory cterm=NONE ctermfg=" . <SID>X(28) . " ctermbg=" . "NONE"
|
176
|
+
exec "hi LineNr cterm=NONE ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(80)
|
177
|
+
exec "hi NonText cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . "NONE"
|
178
|
+
exec "hi SpecialKey cterm=BOLD ctermfg=" . <SID>X(55) . " ctermbg=" . "NONE"
|
179
|
+
exec "hi Title cterm=BOLD ctermfg=" . <SID>X(48) . " ctermbg=" . "NONE"
|
180
|
+
exec "hi Visual cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(38)
|
181
|
+
|
182
|
+
exec "hi Comment cterm=NONE ctermfg=" . <SID>X(52) . " ctermbg=" . "NONE"
|
183
|
+
exec "hi Constant cterm=NONE ctermfg=" . <SID>X(73) . " ctermbg=" . "NONE"
|
184
|
+
exec "hi String cterm=NONE ctermfg=" . <SID>X(73) . " ctermbg=" . <SID>X(81)
|
185
|
+
exec "hi Error cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(32)
|
186
|
+
exec "hi Identifier cterm=NONE ctermfg=" . <SID>X(53) . " ctermbg=" . "NONE"
|
187
|
+
exec "hi Ignore cterm=NONE"
|
188
|
+
exec "hi Number cterm=NONE ctermfg=" . <SID>X(69) . " ctermbg=" . "NONE"
|
189
|
+
exec "hi PreProc cterm=NONE ctermfg=" . <SID>X(25) . " ctermbg=" . "NONE"
|
190
|
+
exec "hi Special cterm=NONE ctermfg=" . <SID>X(55) . " ctermbg=" . "NONE"
|
191
|
+
exec "hi SpecialChar cterm=NONE ctermfg=" . <SID>X(55) . " ctermbg=" . <SID>X(81)
|
192
|
+
exec "hi Statement cterm=NONE ctermfg=" . <SID>X(27) . " ctermbg=" . "NONE"
|
193
|
+
exec "hi Todo cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(57)
|
194
|
+
exec "hi Type cterm=NONE ctermfg=" . <SID>X(71) . " ctermbg=" . "NONE"
|
195
|
+
exec "hi Underlined cterm=BOLD ctermfg=" . <SID>X(77) . " ctermbg=" . "NONE"
|
196
|
+
exec "hi TaglistTagName cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . "NONE"
|
197
|
+
|
198
|
+
if v:version >= 700
|
199
|
+
exec "hi Pmenu cterm=NONE ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(82)
|
200
|
+
exec "hi PmenuSel cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(38)
|
201
|
+
exec "hi PmenuSbar cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(39)
|
202
|
+
exec "hi PmenuThumb cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(39)
|
203
|
+
|
204
|
+
exec "hi SpellBad cterm=NONE ctermbg=" . <SID>X(32)
|
205
|
+
exec "hi SpellRare cterm=NONE ctermbg=" . <SID>X(33)
|
206
|
+
exec "hi SpellLocal cterm=NONE ctermbg=" . <SID>X(36)
|
207
|
+
exec "hi SpellCap cterm=NONE ctermbg=" . <SID>X(21)
|
208
|
+
exec "hi MatchParen cterm=NONE ctermbg=" . <SID>X(14) . "ctermfg=" . <SID>X(25)
|
209
|
+
endif
|
210
|
+
endif
|
211
|
+
|
212
|
+
" vim: set et :
|
@@ -0,0 +1,212 @@
|
|
1
|
+
" ir_black color scheme
|
2
|
+
" More at: http://blog.infinitered.com/entries/show/8
|
3
|
+
|
4
|
+
|
5
|
+
" ********************************************************************************
|
6
|
+
" Standard colors used in all ir_black themes:
|
7
|
+
" Note, x:x:x are RGB values
|
8
|
+
"
|
9
|
+
" normal: #f6f3e8
|
10
|
+
"
|
11
|
+
" string: #A8FF60 168:255:96
|
12
|
+
" string inner (punc, code, etc): #00A0A0 0:160:160
|
13
|
+
" number: #FF73FD 255:115:253
|
14
|
+
" comments: #7C7C7C 124:124:124
|
15
|
+
" keywords: #96CBFE 150:203:254
|
16
|
+
" operators: white
|
17
|
+
" class: #FFFFB6 255:255:182
|
18
|
+
" method declaration name: #FFD2A7 255:210:167
|
19
|
+
" regular expression: #E9C062 233:192:98
|
20
|
+
" regexp alternate: #FF8000 255:128:0
|
21
|
+
" regexp alternate 2: #B18A3D 177:138:61
|
22
|
+
" variable: #C6C5FE 198:197:254
|
23
|
+
"
|
24
|
+
" Misc colors:
|
25
|
+
" red color (used for whatever): #FF6C60 255:108:96
|
26
|
+
" light red: #FFB6B0 255:182:176
|
27
|
+
"
|
28
|
+
" brown: #E18964 good for special
|
29
|
+
"
|
30
|
+
" lightpurpleish: #FFCCFF
|
31
|
+
"
|
32
|
+
" Interface colors:
|
33
|
+
" background color: black
|
34
|
+
" cursor (where underscore is used): #FFA560 255:165:96
|
35
|
+
" cursor (where block is used): white
|
36
|
+
" visual selection: #1D1E2C
|
37
|
+
" current line: #151515 21:21:21
|
38
|
+
" search selection: #07281C 7:40:28
|
39
|
+
" line number: #3D3D3D 61:61:61
|
40
|
+
|
41
|
+
|
42
|
+
" ********************************************************************************
|
43
|
+
" The following are the preferred 16 colors for your terminal
|
44
|
+
" Colors Bright Colors
|
45
|
+
" Black #4E4E4E #7C7C7C
|
46
|
+
" Red #FF6C60 #FFB6B0
|
47
|
+
" Green #A8FF60 #CEFFAB
|
48
|
+
" Yellow #FFFFB6 #FFFFCB
|
49
|
+
" Blue #96CBFE #FFFFCB
|
50
|
+
" Magenta #FF73FD #FF9CFE
|
51
|
+
" Cyan #C6C5FE #DFDFFE
|
52
|
+
" White #EEEEEE #FFFFFF
|
53
|
+
|
54
|
+
|
55
|
+
" ********************************************************************************
|
56
|
+
set background=dark
|
57
|
+
hi clear
|
58
|
+
|
59
|
+
if exists("syntax_on")
|
60
|
+
syntax reset
|
61
|
+
endif
|
62
|
+
|
63
|
+
let colors_name = "ir_black"
|
64
|
+
|
65
|
+
|
66
|
+
"hi Example guifg=NONE guibg=NONE gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
67
|
+
|
68
|
+
" General colors
|
69
|
+
hi Normal guifg=#f6f3e8 guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
70
|
+
hi NonText guifg=#070707 guibg=black gui=NONE ctermfg=black ctermbg=NONE cterm=NONE
|
71
|
+
|
72
|
+
hi Cursor guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=reverse
|
73
|
+
hi LineNr guifg=#3D3D3D guibg=black gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
74
|
+
|
75
|
+
hi VertSplit guifg=#202020 guibg=#202020 gui=NONE ctermfg=darkgray ctermbg=darkgray cterm=NONE
|
76
|
+
hi StatusLine guifg=#CCCCCC guibg=#202020 gui=italic ctermfg=white ctermbg=darkgray cterm=NONE
|
77
|
+
hi StatusLineNC guifg=black guibg=#202020 gui=NONE ctermfg=blue ctermbg=darkgray cterm=NONE
|
78
|
+
|
79
|
+
hi Folded guifg=#a0a8b0 guibg=#384048 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
80
|
+
hi Title guifg=#f6f3e8 guibg=NONE gui=bold ctermfg=NONE ctermbg=NONE cterm=NONE
|
81
|
+
hi Visual guifg=NONE guibg=#262D51 gui=NONE ctermfg=NONE ctermbg=darkgray cterm=NONE
|
82
|
+
|
83
|
+
hi SpecialKey guifg=#808080 guibg=#343434 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
84
|
+
|
85
|
+
hi WildMenu guifg=green guibg=yellow gui=NONE ctermfg=black ctermbg=yellow cterm=NONE
|
86
|
+
hi PmenuSbar guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=NONE
|
87
|
+
"hi Ignore guifg=gray guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
88
|
+
|
89
|
+
hi Error guifg=NONE guibg=NONE gui=undercurl ctermfg=white ctermbg=red cterm=NONE guisp=#FF6C60 " undercurl color
|
90
|
+
hi ErrorMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
|
91
|
+
hi WarningMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
|
92
|
+
|
93
|
+
" Message displayed in lower left, such as --INSERT--
|
94
|
+
hi ModeMsg guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD
|
95
|
+
|
96
|
+
if version >= 700 " Vim 7.x specific colors
|
97
|
+
hi CursorLine guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
|
98
|
+
hi CursorColumn guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
|
99
|
+
hi MatchParen guifg=#f6f3e8 guibg=#857b6f gui=BOLD ctermfg=white ctermbg=darkgray cterm=NONE
|
100
|
+
hi Pmenu guifg=#f6f3e8 guibg=#444444 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
101
|
+
hi PmenuSel guifg=#000000 guibg=#cae682 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
102
|
+
hi Search guifg=NONE guibg=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
|
103
|
+
endif
|
104
|
+
|
105
|
+
" Syntax highlighting
|
106
|
+
hi Comment guifg=#7C7C7C guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
107
|
+
hi String guifg=#A8FF60 guibg=NONE gui=NONE ctermfg=green ctermbg=NONE cterm=NONE
|
108
|
+
hi Number guifg=#FF73FD guibg=NONE gui=NONE ctermfg=magenta ctermbg=NONE cterm=NONE
|
109
|
+
|
110
|
+
hi Keyword guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
111
|
+
hi PreProc guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
112
|
+
hi Conditional guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE " if else end
|
113
|
+
|
114
|
+
hi Todo guifg=#8f8f8f guibg=NONE gui=NONE ctermfg=red ctermbg=NONE cterm=NONE
|
115
|
+
hi Constant guifg=#99CC99 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
116
|
+
|
117
|
+
hi Identifier guifg=#C6C5FE guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
118
|
+
hi Function guifg=#FFD2A7 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
119
|
+
hi Type guifg=#FFFFB6 guibg=NONE gui=NONE ctermfg=yellow ctermbg=NONE cterm=NONE
|
120
|
+
hi Statement guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
|
121
|
+
|
122
|
+
hi Special guifg=#E18964 guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
123
|
+
hi Delimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
124
|
+
hi Operator guifg=white guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
125
|
+
|
126
|
+
hi link Character Constant
|
127
|
+
hi link Boolean Constant
|
128
|
+
hi link Float Number
|
129
|
+
hi link Repeat Statement
|
130
|
+
hi link Label Statement
|
131
|
+
hi link Exception Statement
|
132
|
+
hi link Include PreProc
|
133
|
+
hi link Define PreProc
|
134
|
+
hi link Macro PreProc
|
135
|
+
hi link PreCondit PreProc
|
136
|
+
hi link StorageClass Type
|
137
|
+
hi link Structure Type
|
138
|
+
hi link Typedef Type
|
139
|
+
hi link Tag Special
|
140
|
+
hi link SpecialChar Special
|
141
|
+
hi link SpecialComment Special
|
142
|
+
hi link Debug Special
|
143
|
+
|
144
|
+
|
145
|
+
" Special for Ruby
|
146
|
+
hi rubyRegexp guifg=#B18A3D guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
147
|
+
hi rubyRegexpDelimiter guifg=#FF8000 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
148
|
+
hi rubyEscape guifg=white guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
149
|
+
hi rubyInterpolationDelimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
150
|
+
hi rubyControl guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE "and break, etc
|
151
|
+
"hi rubyGlobalVariable guifg=#FFCCFF guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE "yield
|
152
|
+
hi rubyStringDelimiter guifg=#336633 guibg=NONE gui=NONE ctermfg=lightgreen ctermbg=NONE cterm=NONE
|
153
|
+
"rubyInclude
|
154
|
+
"rubySharpBang
|
155
|
+
"rubyAccess
|
156
|
+
"rubyPredefinedVariable
|
157
|
+
"rubyBoolean
|
158
|
+
"rubyClassVariable
|
159
|
+
"rubyBeginEnd
|
160
|
+
"rubyRepeatModifier
|
161
|
+
"hi link rubyArrayDelimiter Special " [ , , ]
|
162
|
+
"rubyCurlyBlock { , , }
|
163
|
+
|
164
|
+
hi link rubyClass Keyword
|
165
|
+
hi link rubyModule Keyword
|
166
|
+
hi link rubyKeyword Keyword
|
167
|
+
hi link rubyOperator Operator
|
168
|
+
hi link rubyIdentifier Identifier
|
169
|
+
hi link rubyInstanceVariable Identifier
|
170
|
+
hi link rubyGlobalVariable Identifier
|
171
|
+
hi link rubyClassVariable Identifier
|
172
|
+
hi link rubyConstant Type
|
173
|
+
|
174
|
+
|
175
|
+
" Special for Java
|
176
|
+
" hi link javaClassDecl Type
|
177
|
+
hi link javaScopeDecl Identifier
|
178
|
+
hi link javaCommentTitle javaDocSeeTag
|
179
|
+
hi link javaDocTags javaDocSeeTag
|
180
|
+
hi link javaDocParam javaDocSeeTag
|
181
|
+
hi link javaDocSeeTagParam javaDocSeeTag
|
182
|
+
|
183
|
+
hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
184
|
+
hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
185
|
+
"hi javaClassDecl guifg=#CCFFCC guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
186
|
+
|
187
|
+
|
188
|
+
" Special for XML
|
189
|
+
hi link xmlTag Keyword
|
190
|
+
hi link xmlTagName Conditional
|
191
|
+
hi link xmlEndTag Identifier
|
192
|
+
|
193
|
+
|
194
|
+
" Special for HTML
|
195
|
+
hi link htmlTag Keyword
|
196
|
+
hi link htmlTagName Conditional
|
197
|
+
hi link htmlEndTag Identifier
|
198
|
+
|
199
|
+
|
200
|
+
" Special for Javascript
|
201
|
+
hi link javaScriptNumber Number
|
202
|
+
|
203
|
+
|
204
|
+
" Special for Python
|
205
|
+
"hi link pythonEscape Keyword
|
206
|
+
|
207
|
+
|
208
|
+
" Special for CSharp
|
209
|
+
hi link csXmlTag Keyword
|
210
|
+
|
211
|
+
|
212
|
+
" Special for PHP
|
@@ -0,0 +1,213 @@
|
|
1
|
+
" ir_black color scheme
|
2
|
+
" More at: http://blog.infinitered.com/entries/show/8
|
3
|
+
" Modified by Eric Budd
|
4
|
+
|
5
|
+
|
6
|
+
" ********************************************************************************
|
7
|
+
" Standard colors used in all ir_black themes:
|
8
|
+
" Note, x:x:x are RGB values
|
9
|
+
"
|
10
|
+
" normal: #f6f3e8
|
11
|
+
"
|
12
|
+
" string: #A8FF60 168:255:96
|
13
|
+
" string inner (punc, code, etc): #00A0A0 0:160:160
|
14
|
+
" number: #FF73FD 255:115:253
|
15
|
+
" comments: #7C7C7C 124:124:124
|
16
|
+
" keywords: #96CBFE 150:203:254
|
17
|
+
" operators: white
|
18
|
+
" class: #FFFFB6 255:255:182
|
19
|
+
" method declaration name: #FFD2A7 255:210:167
|
20
|
+
" regular expression: #E9C062 233:192:98
|
21
|
+
" regexp alternate: #FF8000 255:128:0
|
22
|
+
" regexp alternate 2: #B18A3D 177:138:61
|
23
|
+
" variable: #C6C5FE 198:197:254
|
24
|
+
"
|
25
|
+
" Misc colors:
|
26
|
+
" red color (used for whatever): #FF6C60 255:108:96
|
27
|
+
" light red: #FFB6B0 255:182:176
|
28
|
+
"
|
29
|
+
" brown: #E18964 good for special
|
30
|
+
"
|
31
|
+
" lightpurpleish: #FFCCFF
|
32
|
+
"
|
33
|
+
" Interface colors:
|
34
|
+
" background color: black
|
35
|
+
" cursor (where underscore is used): #FFA560 255:165:96
|
36
|
+
" cursor (where block is used): white
|
37
|
+
" visual selection: #1D1E2C
|
38
|
+
" current line: #151515 21:21:21
|
39
|
+
" search selection: #07281C 7:40:28
|
40
|
+
" line number: #3D3D3D 61:61:61
|
41
|
+
|
42
|
+
|
43
|
+
" ********************************************************************************
|
44
|
+
" The following are the preferred 16 colors for your terminal
|
45
|
+
" Colors Bright Colors
|
46
|
+
" Black #4E4E4E #7C7C7C
|
47
|
+
" Red #FF6C60 #FFB6B0
|
48
|
+
" Green #A8FF60 #CEFFAB
|
49
|
+
" Yellow #FFFFB6 #FFFFCB
|
50
|
+
" Blue #96CBFE #FFFFCB
|
51
|
+
" Magenta #FF73FD #FF9CFE
|
52
|
+
" Cyan #C6C5FE #DFDFFE
|
53
|
+
" White #EEEEEE #FFFFFF
|
54
|
+
|
55
|
+
|
56
|
+
" ********************************************************************************
|
57
|
+
set background=dark
|
58
|
+
hi clear
|
59
|
+
|
60
|
+
if exists("syntax_on")
|
61
|
+
syntax reset
|
62
|
+
endif
|
63
|
+
|
64
|
+
let colors_name = "ir_black"
|
65
|
+
|
66
|
+
|
67
|
+
"hi Example guifg=NONE guibg=NONE gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
68
|
+
|
69
|
+
" General colors
|
70
|
+
hi Normal guifg=#f6f3e8 guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
71
|
+
hi NonText guifg=#070707 guibg=black gui=NONE ctermfg=black ctermbg=NONE cterm=NONE
|
72
|
+
|
73
|
+
hi Cursor guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=reverse
|
74
|
+
hi LineNr guifg=#3D3D3D guibg=black gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
75
|
+
|
76
|
+
hi VertSplit guifg=#202020 guibg=#202020 gui=NONE ctermfg=darkgray ctermbg=darkgray cterm=NONE
|
77
|
+
hi StatusLine guifg=#CCCCCC guibg=#202020 gui=italic ctermfg=white ctermbg=darkgray cterm=NONE
|
78
|
+
hi StatusLineNC guifg=black guibg=#202020 gui=NONE ctermfg=blue ctermbg=darkgray cterm=NONE
|
79
|
+
|
80
|
+
hi Folded guifg=#a0a8b0 guibg=#384048 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
81
|
+
hi Title guifg=#f6f3e8 guibg=NONE gui=bold ctermfg=NONE ctermbg=NONE cterm=NONE
|
82
|
+
hi Visual guifg=NONE guibg=#262D51 gui=NONE ctermfg=NONE ctermbg=darkgray cterm=NONE
|
83
|
+
|
84
|
+
hi SpecialKey guifg=#808080 guibg=#343434 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
85
|
+
|
86
|
+
hi WildMenu guifg=green guibg=yellow gui=NONE ctermfg=black ctermbg=yellow cterm=NONE
|
87
|
+
hi PmenuSbar guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=NONE
|
88
|
+
"hi Ignore guifg=gray guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
89
|
+
|
90
|
+
hi Error guifg=NONE guibg=NONE gui=undercurl ctermfg=white ctermbg=red cterm=NONE guisp=#FF6C60 " undercurl color
|
91
|
+
hi ErrorMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
|
92
|
+
hi WarningMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
|
93
|
+
|
94
|
+
" Message displayed in lower left, such as --INSERT--
|
95
|
+
hi ModeMsg guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD
|
96
|
+
|
97
|
+
if version >= 700 " Vim 7.x specific colors
|
98
|
+
hi CursorLine guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
|
99
|
+
hi CursorColumn guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
|
100
|
+
hi MatchParen guifg=#f6f3e8 guibg=#857b6f gui=BOLD ctermfg=white ctermbg=darkgray cterm=NONE
|
101
|
+
hi Pmenu guifg=#f6f3e8 guibg=#444444 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
102
|
+
hi PmenuSel guifg=#000000 guibg=#cae682 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
|
103
|
+
hi Search guifg=#000000 guibg=#449944 gui=BOLD ctermfg=NONE ctermbg=NONE cterm=underline
|
104
|
+
endif
|
105
|
+
|
106
|
+
" Syntax highlighting
|
107
|
+
hi Comment guifg=#7C7C7C guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
108
|
+
hi String guifg=#A8FF60 guibg=NONE gui=NONE ctermfg=green ctermbg=NONE cterm=NONE
|
109
|
+
hi Number guifg=#FF73FD guibg=NONE gui=NONE ctermfg=magenta ctermbg=NONE cterm=NONE
|
110
|
+
|
111
|
+
hi Keyword guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
112
|
+
hi PreProc guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
113
|
+
hi Conditional guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE " if else end
|
114
|
+
|
115
|
+
hi Todo guifg=#8f8f8f guibg=NONE gui=NONE ctermfg=red ctermbg=NONE cterm=NONE
|
116
|
+
hi Constant guifg=#99CC99 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
117
|
+
|
118
|
+
hi Identifier guifg=#C6C5FE guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
119
|
+
hi Function guifg=#FFD2A7 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
120
|
+
hi Type guifg=#FFFFB6 guibg=NONE gui=NONE ctermfg=yellow ctermbg=NONE cterm=NONE
|
121
|
+
hi Statement guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE
|
122
|
+
|
123
|
+
hi Special guifg=#E18964 guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
124
|
+
hi Delimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
125
|
+
hi Operator guifg=white guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
126
|
+
|
127
|
+
hi link Character Constant
|
128
|
+
hi link Boolean Constant
|
129
|
+
hi link Float Number
|
130
|
+
hi link Repeat Statement
|
131
|
+
hi link Label Statement
|
132
|
+
hi link Exception Statement
|
133
|
+
hi link Include PreProc
|
134
|
+
hi link Define PreProc
|
135
|
+
hi link Macro PreProc
|
136
|
+
hi link PreCondit PreProc
|
137
|
+
hi link StorageClass Type
|
138
|
+
hi link Structure Type
|
139
|
+
hi link Typedef Type
|
140
|
+
hi link Tag Special
|
141
|
+
hi link SpecialChar Special
|
142
|
+
hi link SpecialComment Special
|
143
|
+
hi link Debug Special
|
144
|
+
|
145
|
+
|
146
|
+
" Special for Ruby
|
147
|
+
hi rubyRegexp guifg=#B18A3D guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
148
|
+
hi rubyRegexpDelimiter guifg=#FF8000 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
|
149
|
+
hi rubyEscape guifg=white guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
|
150
|
+
hi rubyInterpolationDelimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
|
151
|
+
hi rubyControl guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE "and break, etc
|
152
|
+
"hi rubyGlobalVariable guifg=#FFCCFF guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE "yield
|
153
|
+
hi rubyStringDelimiter guifg=#336633 guibg=NONE gui=NONE ctermfg=lightgreen ctermbg=NONE cterm=NONE
|
154
|
+
"rubyInclude
|
155
|
+
"rubySharpBang
|
156
|
+
"rubyAccess
|
157
|
+
"rubyPredefinedVariable
|
158
|
+
"rubyBoolean
|
159
|
+
"rubyClassVariable
|
160
|
+
"rubyBeginEnd
|
161
|
+
"rubyRepeatModifier
|
162
|
+
"hi link rubyArrayDelimiter Special " [ , , ]
|
163
|
+
"rubyCurlyBlock { , , }
|
164
|
+
|
165
|
+
hi link rubyClass Keyword
|
166
|
+
hi link rubyModule Keyword
|
167
|
+
hi link rubyKeyword Keyword
|
168
|
+
hi link rubyOperator Operator
|
169
|
+
hi link rubyIdentifier Identifier
|
170
|
+
hi link rubyInstanceVariable Identifier
|
171
|
+
hi link rubyGlobalVariable Identifier
|
172
|
+
hi link rubyClassVariable Identifier
|
173
|
+
hi link rubyConstant Type
|
174
|
+
|
175
|
+
|
176
|
+
" Special for Java
|
177
|
+
" hi link javaClassDecl Type
|
178
|
+
hi link javaScopeDecl Identifier
|
179
|
+
hi link javaCommentTitle javaDocSeeTag
|
180
|
+
hi link javaDocTags javaDocSeeTag
|
181
|
+
hi link javaDocParam javaDocSeeTag
|
182
|
+
hi link javaDocSeeTagParam javaDocSeeTag
|
183
|
+
|
184
|
+
hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
185
|
+
hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
|
186
|
+
"hi javaClassDecl guifg=#CCFFCC guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
|
187
|
+
|
188
|
+
|
189
|
+
" Special for XML
|
190
|
+
hi link xmlTag Keyword
|
191
|
+
hi link xmlTagName Conditional
|
192
|
+
hi link xmlEndTag Identifier
|
193
|
+
|
194
|
+
|
195
|
+
" Special for HTML
|
196
|
+
hi link htmlTag Keyword
|
197
|
+
hi link htmlTagName Conditional
|
198
|
+
hi link htmlEndTag Identifier
|
199
|
+
|
200
|
+
|
201
|
+
" Special for Javascript
|
202
|
+
hi link javaScriptNumber Number
|
203
|
+
|
204
|
+
|
205
|
+
" Special for Python
|
206
|
+
"hi link pythonEscape Keyword
|
207
|
+
|
208
|
+
|
209
|
+
" Special for CSharp
|
210
|
+
hi link csXmlTag Keyword
|
211
|
+
|
212
|
+
|
213
|
+
" Special for PHP
|