662
|
1 " Theme: PaperColor
|
|
2 " Author: Nikyle Nguyen <NLKNguyen@MSN.com>
|
|
3 " License: MIT
|
|
4 " Source: http://github.com/NLKNguyen/papercolor-theme
|
|
5
|
|
6 let s:version = '0.9.x'
|
|
7
|
|
8 " Note on navigating this source code:
|
|
9 " - Use folding feature to collapse/uncollapse blocks of marked code
|
|
10 " zM to fold all markers in this file to see the structure of the source code
|
|
11 " zR to unfold all recursively
|
|
12 " za to toggle a fold
|
|
13 " See: http://vim.wikia.com/wiki/Folding
|
|
14 " - The main section is at the end where the functions are called in order.
|
|
15
|
|
16 " Theme Repository: {{{
|
|
17
|
|
18 let s:themes = {}
|
|
19
|
|
20 " }}}
|
|
21
|
|
22 fun! s:register_default_theme()
|
|
23 " Theme name should be lowercase
|
|
24 let s:themes['default'] = {
|
|
25 \ 'maintainer' : 'Nikyle Nguyen <me@Nikyle.com>',
|
|
26 \ 'source' : 'http://github.com/NLKNguyen/papercolor-theme',
|
|
27 \ 'description' : 'The original PaperColor Theme, inspired by Google Material Design',
|
|
28 \ 'options' : {
|
|
29 \ 'allow_bold': 1
|
|
30 \ }
|
|
31 \ }
|
|
32
|
|
33 " Theme can have 'light' and/or 'dark' color palette.
|
|
34 " Color values can be HEX and/or 256-color. Use empty string '' if not provided.
|
|
35 " Only color00 -> color15 are required. The rest are optional.
|
|
36 let s:themes['default'].light = {
|
|
37 \ 'NO_CONVERSION': 1,
|
|
38 \ 'TEST_256_COLOR_CONSISTENCY' : 1,
|
|
39 \ 'palette' : {
|
|
40 \ 'color00' : ['#eeeeee', '255'],
|
|
41 \ 'color01' : ['#af0000', '124'],
|
|
42 \ 'color02' : ['#008700', '28'],
|
|
43 \ 'color03' : ['#5f8700', '64'],
|
|
44 \ 'color04' : ['#0087af', '31'],
|
|
45 \ 'color05' : ['#878787', '102'],
|
|
46 \ 'color06' : ['#005f87', '24'],
|
|
47 \ 'color07' : ['#444444', '238'],
|
|
48 \ 'color08' : ['#bcbcbc', '250'],
|
|
49 \ 'color09' : ['#d70000', '160'],
|
|
50 \ 'color10' : ['#d70087', '162'],
|
|
51 \ 'color11' : ['#8700af', '91'],
|
|
52 \ 'color12' : ['#d75f00', '166'],
|
|
53 \ 'color13' : ['#d75f00', '166'],
|
|
54 \ 'color14' : ['#005faf', '25'],
|
|
55 \ 'color15' : ['#005f87', '24'],
|
|
56 \ 'color16' : ['#0087af', '31'],
|
|
57 \ 'color17' : ['#008700', '28'],
|
|
58 \ 'cursor_fg' : ['#eeeeee', '255'],
|
|
59 \ 'cursor_bg' : ['#005f87', '24'],
|
|
60 \ 'cursorline' : ['#e4e4e4', '254'],
|
|
61 \ 'cursorcolumn' : ['#e4e4e4', '254'],
|
|
62 \ 'cursorlinenr_fg' : ['#af5f00', '130'],
|
|
63 \ 'cursorlinenr_bg' : ['#eeeeee', '255'],
|
|
64 \ 'popupmenu_fg' : ['#444444', '238'],
|
|
65 \ 'popupmenu_bg' : ['#d0d0d0', '252'],
|
|
66 \ 'search_fg' : ['#444444', '238'],
|
|
67 \ 'search_bg' : ['#ffff5f', '227'],
|
|
68 \ 'linenumber_fg' : ['#b2b2b2', '249'],
|
|
69 \ 'linenumber_bg' : ['#eeeeee', '255'],
|
|
70 \ 'vertsplit_fg' : ['#005f87', '24'],
|
|
71 \ 'vertsplit_bg' : ['#eeeeee', '255'],
|
|
72 \ 'statusline_active_fg' : ['#e4e4e4', '254'],
|
|
73 \ 'statusline_active_bg' : ['#005f87', '24'],
|
|
74 \ 'statusline_inactive_fg' : ['#444444', '238'],
|
|
75 \ 'statusline_inactive_bg' : ['#d0d0d0', '252'],
|
|
76 \ 'todo_fg' : ['#00af5f', '35'],
|
|
77 \ 'todo_bg' : ['#eeeeee', '255'],
|
|
78 \ 'error_fg' : ['#af0000', '124'],
|
|
79 \ 'error_bg' : ['#ffd7ff', '225'],
|
|
80 \ 'matchparen_bg' : ['#c6c6c6', '251'],
|
|
81 \ 'matchparen_fg' : ['#005f87', '24'],
|
|
82 \ 'visual_fg' : ['#eeeeee', '255'],
|
|
83 \ 'visual_bg' : ['#0087af', '31'],
|
|
84 \ 'folded_fg' : ['#0087af', '31'],
|
|
85 \ 'folded_bg' : ['#afd7ff', '153'],
|
|
86 \ 'wildmenu_fg': ['#444444', '238'],
|
|
87 \ 'wildmenu_bg': ['#ffff00', '226'],
|
|
88 \ 'spellbad': ['#ffafd7', '218'],
|
|
89 \ 'spellcap': ['#ffffaf', '229'],
|
|
90 \ 'spellrare': ['#afff87', '156'],
|
|
91 \ 'spelllocal': ['#d7d7ff', '189'],
|
|
92 \ 'diffadd_fg': ['#008700', '28'],
|
|
93 \ 'diffadd_bg': ['#afffaf', '157'],
|
|
94 \ 'diffdelete_fg': ['#af0000', '124'],
|
|
95 \ 'diffdelete_bg': ['#ffd7ff', '225'],
|
|
96 \ 'difftext_fg': ['#0087af', '31'],
|
|
97 \ 'difftext_bg': ['#ffffd7', '230'],
|
|
98 \ 'diffchange_fg': ['#444444', '238'],
|
|
99 \ 'diffchange_bg': ['#ffd787', '222'],
|
|
100 \ 'tabline_bg': ['#005f87', '24'],
|
|
101 \ 'tabline_active_fg': ['#444444', '238'],
|
|
102 \ 'tabline_active_bg': ['#e4e4e4', '254'],
|
|
103 \ 'tabline_inactive_fg': ['#eeeeee', '255'],
|
|
104 \ 'tabline_inactive_bg': ['#0087af', '31'],
|
|
105 \ 'buftabline_bg': ['#005f87', '24'],
|
|
106 \ 'buftabline_current_fg': ['#444444', '238'],
|
|
107 \ 'buftabline_current_bg': ['#e4e4e4', '254'],
|
|
108 \ 'buftabline_active_fg': ['#eeeeee', '255'],
|
|
109 \ 'buftabline_active_bg': ['#005faf', '25'],
|
|
110 \ 'buftabline_inactive_fg': ['#eeeeee', '255'],
|
|
111 \ 'buftabline_inactive_bg': ['#0087af', '31']
|
|
112 \ }
|
|
113 \ }
|
|
114
|
|
115 " TODO: idea for subtheme options
|
|
116 " let s:themes['default'].light.subtheme = {
|
|
117 " \ 'alternative' : {
|
|
118 " \ 'options' : {
|
|
119 " \ 'transparent_background': 1
|
|
120 " \ },
|
|
121 " \ 'palette' : {
|
|
122 " \ }
|
|
123 " \ }
|
|
124 " \ }
|
|
125
|
|
126 let s:themes['default'].dark = {
|
|
127 \ 'NO_CONVERSION': 1,
|
|
128 \ 'TEST_256_COLOR_CONSISTENCY' : 1,
|
|
129 \ 'palette' : {
|
|
130 \ 'color00' : ['#1c1c1c', '234'],
|
|
131 \ 'color01' : ['#af005f', '125'],
|
|
132 \ 'color02' : ['#5faf00', '70'],
|
|
133 \ 'color03' : ['#d7af5f', '179'],
|
|
134 \ 'color04' : ['#5fafd7', '74'],
|
|
135 \ 'color05' : ['#808080', '244'],
|
|
136 \ 'color06' : ['#d7875f', '173'],
|
|
137 \ 'color07' : ['#d0d0d0', '252'],
|
|
138 \ 'color08' : ['#585858', '240'],
|
|
139 \ 'color09' : ['#5faf5f', '71'],
|
|
140 \ 'color10' : ['#afd700', '148'],
|
|
141 \ 'color11' : ['#af87d7', '140'],
|
|
142 \ 'color12' : ['#ffaf00', '214'],
|
|
143 \ 'color13' : ['#ff5faf', '205'],
|
|
144 \ 'color14' : ['#00afaf', '37'],
|
|
145 \ 'color15' : ['#5f8787', '66'],
|
|
146 \ 'color16' : ['#5fafd7', '74'],
|
|
147 \ 'color17' : ['#d7af00', '178'],
|
|
148 \ 'cursor_fg' : ['#1c1c1c', '234'],
|
|
149 \ 'cursor_bg' : ['#c6c6c6', '251'],
|
|
150 \ 'cursorline' : ['#303030', '236'],
|
|
151 \ 'cursorcolumn' : ['#303030', '236'],
|
|
152 \ 'cursorlinenr_fg' : ['#ffff00', '226'],
|
|
153 \ 'cursorlinenr_bg' : ['#1c1c1c', '234'],
|
|
154 \ 'popupmenu_fg' : ['#c6c6c6', '251'],
|
|
155 \ 'popupmenu_bg' : ['#303030', '236'],
|
|
156 \ 'search_fg' : ['#000000', '16'],
|
|
157 \ 'search_bg' : ['#00875f', '29'],
|
|
158 \ 'linenumber_fg' : ['#585858', '240'],
|
|
159 \ 'linenumber_bg' : ['#1c1c1c', '234'],
|
|
160 \ 'vertsplit_fg' : ['#5f8787', '66'],
|
|
161 \ 'vertsplit_bg' : ['#1c1c1c', '234'],
|
|
162 \ 'statusline_active_fg' : ['#1c1c1c', '234'],
|
|
163 \ 'statusline_active_bg' : ['#5f8787', '66'],
|
|
164 \ 'statusline_inactive_fg' : ['#bcbcbc', '250'],
|
|
165 \ 'statusline_inactive_bg' : ['#3a3a3a', '237'],
|
|
166 \ 'todo_fg' : ['#ff8700', '208'],
|
|
167 \ 'todo_bg' : ['#1c1c1c', '234'],
|
|
168 \ 'error_fg' : ['#af005f', '125'],
|
|
169 \ 'error_bg' : ['#5f0000', '52'],
|
|
170 \ 'matchparen_bg' : ['#4e4e4e', '239'],
|
|
171 \ 'matchparen_fg' : ['#c6c6c6', '251'],
|
|
172 \ 'visual_fg' : ['#000000', '16'],
|
|
173 \ 'visual_bg' : ['#8787af', '103'],
|
|
174 \ 'folded_fg' : ['#d787ff', '177'],
|
|
175 \ 'folded_bg' : ['#5f005f', '53'],
|
|
176 \ 'wildmenu_fg': ['#1c1c1c', '234'],
|
|
177 \ 'wildmenu_bg': ['#afd700', '148'],
|
|
178 \ 'spellbad': ['#5f0000', '52'],
|
|
179 \ 'spellcap': ['#5f005f', '53'],
|
|
180 \ 'spellrare': ['#005f00', '22'],
|
|
181 \ 'spelllocal': ['#00005f', '17'],
|
|
182 \ 'diffadd_fg': ['#87d700', '112'],
|
|
183 \ 'diffadd_bg': ['#005f00', '22'],
|
|
184 \ 'diffdelete_fg': ['#af005f', '125'],
|
|
185 \ 'diffdelete_bg': ['#5f0000', '52'],
|
|
186 \ 'difftext_fg': ['#5fffff', '87'],
|
|
187 \ 'difftext_bg': ['#008787', '30'],
|
|
188 \ 'diffchange_fg': ['#d0d0d0', '252'],
|
|
189 \ 'diffchange_bg': ['#005f5f', '23'],
|
|
190 \ 'tabline_bg': ['#262626', '235'],
|
|
191 \ 'tabline_active_fg': ['#121212', '233'],
|
|
192 \ 'tabline_active_bg': ['#00afaf', '37'],
|
|
193 \ 'tabline_inactive_fg': ['#bcbcbc', '250'],
|
|
194 \ 'tabline_inactive_bg': ['#585858', '240'],
|
|
195 \ 'buftabline_bg': ['#262626', '235'],
|
|
196 \ 'buftabline_current_fg': ['#121212', '233'],
|
|
197 \ 'buftabline_current_bg': ['#00afaf', '37'],
|
|
198 \ 'buftabline_active_fg': ['#00afaf', '37'],
|
|
199 \ 'buftabline_active_bg': ['#585858', '240'],
|
|
200 \ 'buftabline_inactive_fg': ['#bcbcbc', '250'],
|
|
201 \ 'buftabline_inactive_bg': ['#585858', '240']
|
|
202 \ }
|
|
203 \ }
|
|
204 endfun
|
|
205
|
|
206 " ============================ THEME REGISTER =================================
|
|
207
|
|
208 " Acquire Theme Data: {{{
|
|
209
|
|
210 " Brief:
|
|
211 " Function to get theme information and store in variables for other
|
|
212 " functions to use
|
|
213 "
|
|
214 " Require:
|
|
215 " s:themes <dictionary> collection of all theme palettes
|
|
216 "
|
|
217 " Require Optionally:
|
|
218 " {g:PaperColor_Theme_[s:theme_name]} <dictionary> user custom theme palette
|
|
219 " g:PaperColor_Theme_Options <dictionary> user options
|
|
220 "
|
|
221 " Expose:
|
|
222 " s:theme_name <string> the name of the selected theme
|
|
223 " s:selected_theme <dictionary> the selected theme object (contains palette, etc.)
|
|
224 " s:selected_variant <string> 'light' or 'dark'
|
|
225 " s:palette <dictionary> the palette of selected theme
|
|
226 " s:options <dictionary> user options
|
|
227 fun! s:acquire_theme_data()
|
|
228
|
|
229 " Get theme name: {{{
|
|
230 let s:theme_name = 'default'
|
|
231
|
|
232 if exists("g:PaperColor_Theme") " Users expressed theme preference
|
|
233 let lowercase_theme_name = tolower(g:PaperColor_Theme)
|
|
234
|
|
235 if lowercase_theme_name !=? 'default'
|
|
236 let theme_identifier = 'PaperColor_' . lowercase_theme_name
|
|
237 let autoload_function = theme_identifier . '#register'
|
|
238
|
|
239 call {autoload_function}()
|
|
240
|
|
241 let theme_variable = 'g:' . theme_identifier
|
|
242
|
|
243 if exists(theme_variable)
|
|
244 let s:theme_name = lowercase_theme_name
|
|
245 let s:themes[s:theme_name] = {theme_variable}
|
|
246 endif
|
|
247
|
|
248 endif
|
|
249
|
|
250 endif
|
|
251 " }}}
|
|
252
|
|
253 if s:theme_name ==? 'default'
|
|
254 " Either no other theme is specified or they failed to load
|
|
255 " Defer loading default theme until now
|
|
256 call s:register_default_theme()
|
|
257 endif
|
|
258
|
|
259 let s:selected_theme = s:themes[s:theme_name]
|
|
260
|
|
261 " Get Theme Variant: either dark or light {{{
|
|
262 let s:selected_variant = 'dark'
|
|
263
|
|
264 let s:is_dark=(&background == 'dark')
|
|
265
|
|
266 if s:is_dark
|
|
267 if has_key(s:selected_theme, 'dark')
|
|
268 let s:selected_variant = 'dark'
|
|
269 else " in case the theme only provides the other variant
|
|
270 let s:selected_variant = 'light'
|
|
271 endif
|
|
272
|
|
273 else " is light background
|
|
274 if has_key(s:selected_theme, 'light')
|
|
275 let s:selected_variant = 'light'
|
|
276 else " in case the theme only provides the other variant
|
|
277 let s:selected_variant = 'dark'
|
|
278 endif
|
|
279 endif
|
|
280
|
|
281 let s:palette = s:selected_theme[s:selected_variant].palette
|
|
282
|
|
283 " Systematic User-Config Options: {{{
|
|
284 " Example config in .vimrc
|
|
285 " let g:PaperColor_Theme_Options = {
|
|
286 " \ 'theme': {
|
|
287 " \ 'default': {
|
|
288 " \ 'allow_bold': 1,
|
|
289 " \ 'allow_italic': 0,
|
|
290 " \ 'transparent_background': 1
|
|
291 " \ }
|
|
292 " \ },
|
|
293 " \ 'language': {
|
|
294 " \ 'python': {
|
|
295 " \ 'highlight_builtins' : 1
|
|
296 " \ },
|
|
297 " \ 'c': {
|
|
298 " \ 'highlight_builtins' : 1
|
|
299 " \ },
|
|
300 " \ 'cpp': {
|
|
301 " \ 'highlight_standard_library': 1
|
|
302 " \ }
|
|
303 " \ }
|
|
304 " \ }
|
|
305 "
|
|
306 let s:options = {}
|
|
307
|
|
308
|
|
309 if exists("g:PaperColor_Theme_Options")
|
|
310 let s:options = g:PaperColor_Theme_Options
|
|
311 endif
|
|
312 " }}}
|
|
313
|
|
314 " }}}
|
|
315 endfun
|
|
316
|
|
317
|
|
318 " }}}
|
|
319
|
|
320 " Identify Color Mode: {{{
|
|
321
|
|
322 fun! s:identify_color_mode()
|
|
323 let s:MODE_16_COLOR = 0
|
|
324 let s:MODE_256_COLOR = 1
|
|
325 let s:MODE_GUI_COLOR = 2
|
|
326
|
|
327 if has("gui_running") || has('termguicolors') && &termguicolors || has('nvim') && $NVIM_TUI_ENABLE_TRUE_COLOR
|
|
328 let s:mode = s:MODE_GUI_COLOR
|
|
329 elseif (&t_Co >= 256)
|
|
330 let s:mode = s:MODE_256_COLOR
|
|
331 else
|
|
332 let s:mode = s:MODE_16_COLOR
|
|
333 endif
|
|
334 endfun
|
|
335
|
|
336 " }}}
|
|
337
|
|
338 " ============================ OPTION HANDLER =================================
|
|
339
|
|
340 " Generate Them Option Variables: {{{
|
|
341
|
|
342
|
|
343 fun! s:generate_theme_option_variables()
|
|
344 " 0. All possible theme option names must be registered here
|
|
345 let l:available_theme_options = [
|
|
346 \ 'allow_bold',
|
|
347 \ 'allow_italic',
|
|
348 \ 'transparent_background',
|
|
349 \ ]
|
|
350
|
|
351 " 1. Generate variables and set to default value
|
|
352 for l:option in l:available_theme_options
|
|
353 let s:{'themeOpt_' . l:option} = 0
|
|
354 endfor
|
|
355
|
|
356 let s:themeOpt_override = {} " special case, this has to be a dictionary
|
|
357
|
|
358 " 2. Reassign value to the above variables based on theme settings
|
|
359
|
|
360 " 2.1 In case the theme has top-level options
|
|
361 if has_key(s:selected_theme, 'options')
|
|
362 let l:theme_options = s:selected_theme['options']
|
|
363 for l:opt_name in keys(l:theme_options)
|
|
364 let s:{'themeOpt_' . l:opt_name} = l:theme_options[l:opt_name]
|
|
365 " echo 's:themeOpt_' . l:opt_name . ' = ' . s:{'themeOpt_' . l:opt_name}
|
|
366 endfor
|
|
367 endif
|
|
368
|
|
369 " 2.2 In case the theme has specific variant options
|
|
370 if has_key(s:selected_theme[s:selected_variant], 'options')
|
|
371 let l:theme_options = s:selected_theme[s:selected_variant]['options']
|
|
372 for l:opt_name in keys(l:theme_options)
|
|
373 let s:{'themeOpt_' . l:opt_name} = l:theme_options[l:opt_name]
|
|
374 " echo 's:themeOpt_' . l:opt_name . ' = ' . s:{'themeOpt_' . l:opt_name}
|
|
375 endfor
|
|
376 endif
|
|
377
|
|
378
|
|
379 " 3. Reassign value to the above variables which the user customizes
|
|
380 " Part of user-config options
|
|
381 let s:theme_options = {}
|
|
382 if has_key(s:options, 'theme')
|
|
383 let s:theme_options = s:options['theme']
|
|
384 endif
|
|
385
|
|
386 " 3.1 In case user sets for a theme without specifying which variant
|
|
387 if has_key(s:theme_options, s:theme_name)
|
|
388 let l:theme_options = s:theme_options[s:theme_name]
|
|
389 for l:opt_name in keys(l:theme_options)
|
|
390 let s:{'themeOpt_' . l:opt_name} = l:theme_options[l:opt_name]
|
|
391 " echo 's:themeOpt_' . l:opt_name . ' = ' . s:{'themeOpt_' . l:opt_name}
|
|
392 endfor
|
|
393 endif
|
|
394
|
|
395
|
|
396 " 3.2 In case user sets for a specific variant of a theme
|
|
397
|
|
398 " Create the string that the user might have set for this theme variant
|
|
399 " for example, 'default.dark'
|
|
400 let l:specific_theme_variant = s:theme_name . '.' . s:selected_variant
|
|
401
|
|
402 if has_key(s:theme_options, l:specific_theme_variant)
|
|
403 let l:theme_options = s:theme_options[l:specific_theme_variant]
|
|
404 for l:opt_name in keys(l:theme_options)
|
|
405 let s:{'themeOpt_' . l:opt_name} = l:theme_options[l:opt_name]
|
|
406 " echo 's:themeOpt_' . l:opt_name . ' = ' . s:{'themeOpt_' . l:opt_name}
|
|
407 endfor
|
|
408 endif
|
|
409
|
|
410 endfun
|
|
411 " }}}
|
|
412
|
|
413 " Check If Theme Has Hint: {{{
|
|
414 "
|
|
415 " Brief:
|
|
416 " Function to Check if the selected theme and variant has a hint
|
|
417 "
|
|
418 " Details:
|
|
419 " A hint is a known key that has value 1
|
|
420 " It is not part of theme design but is used for technical purposes
|
|
421 "
|
|
422 " Example:
|
|
423 " If a theme has hint 'NO_CONVERSION', then we can assume that every
|
|
424 " color value is a complete pair, so we don't have to check.
|
|
425
|
|
426 fun! s:theme_has_hint(hint)
|
|
427 return has_key(s:selected_theme[s:selected_variant], a:hint) &&
|
|
428 \ s:selected_theme[s:selected_variant][a:hint] == 1
|
|
429 endfun
|
|
430 " }}}
|
|
431
|
|
432 " Set Overriding Colors: {{{
|
|
433
|
|
434 fun! s:set_overriding_colors()
|
|
435
|
|
436 if s:theme_has_hint('NO_CONVERSION')
|
|
437 " s:convert_colors will not do anything, so we take care of conversion
|
|
438 " for the overriding colors that need to be converted
|
|
439
|
|
440 if s:mode == s:MODE_GUI_COLOR
|
|
441 " if GUI color is not provided, convert from 256 color that must be available
|
|
442 if !empty(s:themeOpt_override)
|
|
443 call s:load_256_to_GUI_converter()
|
|
444 endif
|
|
445
|
|
446 for l:color in keys(s:themeOpt_override)
|
|
447 let l:value = s:themeOpt_override[l:color]
|
|
448 if l:value[0] == ''
|
|
449 let l:value[0] = s:to_HEX[l:value[1]]
|
|
450 endif
|
|
451 let s:palette[l:color] = l:value
|
|
452 endfor
|
|
453
|
|
454 elseif s:mode == s:MODE_256_COLOR
|
|
455 " if 256 color is not provided, convert from GUI color that must be available
|
|
456 if !empty(s:themeOpt_override)
|
|
457 call s:load_GUI_to_256_converter()
|
|
458 endif
|
|
459
|
|
460 for l:color in keys(s:themeOpt_override)
|
|
461 let l:value = s:themeOpt_override[l:color]
|
|
462 if l:value[1] == ''
|
|
463 let l:value[1] = s:to_256(l:value[0])
|
|
464 endif
|
|
465 let s:palette[l:color] = l:value
|
|
466 endfor
|
|
467 endif
|
|
468
|
|
469 else " simply set the colors and let s:convert_colors() take care of conversion
|
|
470
|
|
471 for l:color in keys(s:themeOpt_override)
|
|
472 let s:palette[l:color] = s:themeOpt_override[l:color]
|
|
473 endfor
|
|
474 endif
|
|
475
|
|
476 endfun
|
|
477 " }}}
|
|
478
|
|
479 " Generate Language Option Variables: {{{
|
|
480
|
|
481 " Brief:
|
|
482 " Function to generate language option variables so that there is no need to
|
|
483 " look up from the dictionary every time the option value is checked in the
|
|
484 " function s:apply_syntax_highlightings()
|
|
485 "
|
|
486 " Require:
|
|
487 " s:options <dictionary> user options
|
|
488 "
|
|
489 " Require Optionally:
|
|
490 " g:PaperColor_Theme_Options <dictionary> user option config in .vimrc
|
|
491 "
|
|
492 " Expose:
|
|
493 " s:langOpt_[LANGUAGE]__[OPTION] <any> variables for language options
|
|
494 "
|
|
495 " Example:
|
|
496 " g:PaperColor_Theme_Options has something like this:
|
|
497 " 'language': {
|
|
498 " \ 'python': {
|
|
499 " \ 'highlight_builtins': 1
|
|
500 " \ }
|
|
501 " }
|
|
502 " The following variable will be generated:
|
|
503 " s:langOpt_python__highlight_builtins = 1
|
|
504
|
|
505 fun! s:generate_language_option_variables()
|
|
506 " 0. All possible theme option names must be registered here
|
|
507 let l:available_language_options = [
|
|
508 \ 'c__highlight_builtins',
|
|
509 \ 'cpp__highlight_standard_library',
|
|
510 \ 'python__highlight_builtins'
|
|
511 \ ]
|
|
512
|
|
513 " 1. Generate variables and set to default value
|
|
514 for l:option in l:available_language_options
|
|
515 let s:{'langOpt_' . l:option} = 0
|
|
516 endfor
|
|
517
|
|
518 " Part of user-config options
|
|
519 if has_key(s:options, 'language')
|
|
520 let l:language_options = s:options['language']
|
|
521 " echo l:language_options
|
|
522 for l:lang in keys(l:language_options)
|
|
523 let l:options = l:language_options[l:lang]
|
|
524 " echo l:lang
|
|
525 " echo l:options
|
|
526 for l:option in keys(l:options)
|
|
527 let s:{'langOpt_' . l:lang . '__' . l:option} = l:options[l:option]
|
|
528 " echo 's:langOpt_' . l:lang . '__' . l:option . ' = ' . l:options[l:option]
|
|
529 endfor
|
|
530 endfor
|
|
531
|
|
532 endif
|
|
533
|
|
534 endfun
|
|
535 " }}}
|
|
536
|
|
537 " =========================== COLOR CONVERTER =================================
|
|
538
|
|
539 fun! s:load_GUI_to_256_converter()
|
|
540 " GUI-color To 256-color: {{{
|
|
541 " Returns an approximate grey index for the given grey level
|
|
542 fun! s:grey_number(x)
|
|
543 if &t_Co == 88
|
|
544 if a:x < 23
|
|
545 return 0
|
|
546 elseif a:x < 69
|
|
547 return 1
|
|
548 elseif a:x < 103
|
|
549 return 2
|
|
550 elseif a:x < 127
|
|
551 return 3
|
|
552 elseif a:x < 150
|
|
553 return 4
|
|
554 elseif a:x < 173
|
|
555 return 5
|
|
556 elseif a:x < 196
|
|
557 return 6
|
|
558 elseif a:x < 219
|
|
559 return 7
|
|
560 elseif a:x < 243
|
|
561 return 8
|
|
562 else
|
|
563 return 9
|
|
564 endif
|
|
565 else
|
|
566 if a:x < 14
|
|
567 return 0
|
|
568 else
|
|
569 let l:n = (a:x - 8) / 10
|
|
570 let l:m = (a:x - 8) % 10
|
|
571 if l:m < 5
|
|
572 return l:n
|
|
573 else
|
|
574 return l:n + 1
|
|
575 endif
|
|
576 endif
|
|
577 endif
|
|
578 endfun
|
|
579
|
|
580 " Returns the actual grey level represented by the grey index
|
|
581 fun! s:grey_level(n)
|
|
582 if &t_Co == 88
|
|
583 if a:n == 0
|
|
584 return 0
|
|
585 elseif a:n == 1
|
|
586 return 46
|
|
587 elseif a:n == 2
|
|
588 return 92
|
|
589 elseif a:n == 3
|
|
590 return 115
|
|
591 elseif a:n == 4
|
|
592 return 139
|
|
593 elseif a:n == 5
|
|
594 return 162
|
|
595 elseif a:n == 6
|
|
596 return 185
|
|
597 elseif a:n == 7
|
|
598 return 208
|
|
599 elseif a:n == 8
|
|
600 return 231
|
|
601 else
|
|
602 return 255
|
|
603 endif
|
|
604 else
|
|
605 if a:n == 0
|
|
606 return 0
|
|
607 else
|
|
608 return 8 + (a:n * 10)
|
|
609 endif
|
|
610 endif
|
|
611 endfun
|
|
612
|
|
613 " Returns the palette index for the given grey index
|
|
614 fun! s:grey_colour(n)
|
|
615 if &t_Co == 88
|
|
616 if a:n == 0
|
|
617 return 16
|
|
618 elseif a:n == 9
|
|
619 return 79
|
|
620 else
|
|
621 return 79 + a:n
|
|
622 endif
|
|
623 else
|
|
624 if a:n == 0
|
|
625 return 16
|
|
626 elseif a:n == 25
|
|
627 return 231
|
|
628 else
|
|
629 return 231 + a:n
|
|
630 endif
|
|
631 endif
|
|
632 endfun
|
|
633
|
|
634 " Returns an approximate colour index for the given colour level
|
|
635 fun! s:rgb_number(x)
|
|
636 if &t_Co == 88
|
|
637 if a:x < 69
|
|
638 return 0
|
|
639 elseif a:x < 172
|
|
640 return 1
|
|
641 elseif a:x < 230
|
|
642 return 2
|
|
643 else
|
|
644 return 3
|
|
645 endif
|
|
646 else
|
|
647 if a:x < 75
|
|
648 return 0
|
|
649 else
|
|
650 let l:n = (a:x - 55) / 40
|
|
651 let l:m = (a:x - 55) % 40
|
|
652 if l:m < 20
|
|
653 return l:n
|
|
654 else
|
|
655 return l:n + 1
|
|
656 endif
|
|
657 endif
|
|
658 endif
|
|
659 endfun
|
|
660
|
|
661 " Returns the actual colour level for the given colour index
|
|
662 fun! s:rgb_level(n)
|
|
663 if &t_Co == 88
|
|
664 if a:n == 0
|
|
665 return 0
|
|
666 elseif a:n == 1
|
|
667 return 139
|
|
668 elseif a:n == 2
|
|
669 return 205
|
|
670 else
|
|
671 return 255
|
|
672 endif
|
|
673 else
|
|
674 if a:n == 0
|
|
675 return 0
|
|
676 else
|
|
677 return 55 + (a:n * 40)
|
|
678 endif
|
|
679 endif
|
|
680 endfun
|
|
681
|
|
682 " Returns the palette index for the given R/G/B colour indices
|
|
683 fun! s:rgb_colour(x, y, z)
|
|
684 if &t_Co == 88
|
|
685 return 16 + (a:x * 16) + (a:y * 4) + a:z
|
|
686 else
|
|
687 return 16 + (a:x * 36) + (a:y * 6) + a:z
|
|
688 endif
|
|
689 endfun
|
|
690
|
|
691 " Returns the palette index to approximate the given R/G/B colour levels
|
|
692 fun! s:colour(r, g, b)
|
|
693 " Get the closest grey
|
|
694 let l:gx = s:grey_number(a:r)
|
|
695 let l:gy = s:grey_number(a:g)
|
|
696 let l:gz = s:grey_number(a:b)
|
|
697
|
|
698 " Get the closest colour
|
|
699 let l:x = s:rgb_number(a:r)
|
|
700 let l:y = s:rgb_number(a:g)
|
|
701 let l:z = s:rgb_number(a:b)
|
|
702
|
|
703 if l:gx == l:gy && l:gy == l:gz
|
|
704 " There are two possibilities
|
|
705 let l:dgr = s:grey_level(l:gx) - a:r
|
|
706 let l:dgg = s:grey_level(l:gy) - a:g
|
|
707 let l:dgb = s:grey_level(l:gz) - a:b
|
|
708 let l:dgrey = (l:dgr * l:dgr) + (l:dgg * l:dgg) + (l:dgb * l:dgb)
|
|
709 let l:dr = s:rgb_level(l:gx) - a:r
|
|
710 let l:dg = s:rgb_level(l:gy) - a:g
|
|
711 let l:db = s:rgb_level(l:gz) - a:b
|
|
712 let l:drgb = (l:dr * l:dr) + (l:dg * l:dg) + (l:db * l:db)
|
|
713 if l:dgrey < l:drgb
|
|
714 " Use the grey
|
|
715 return s:grey_colour(l:gx)
|
|
716 else
|
|
717 " Use the colour
|
|
718 return s:rgb_colour(l:x, l:y, l:z)
|
|
719 endif
|
|
720 else
|
|
721 " Only one possibility
|
|
722 return s:rgb_colour(l:x, l:y, l:z)
|
|
723 endif
|
|
724 endfun
|
|
725
|
|
726 " Returns the palette index to approximate the '#rrggbb' hex string
|
|
727 fun! s:to_256(rgb)
|
|
728 let l:r = ("0x" . strpart(a:rgb, 1, 2)) + 0
|
|
729 let l:g = ("0x" . strpart(a:rgb, 3, 2)) + 0
|
|
730 let l:b = ("0x" . strpart(a:rgb, 5, 2)) + 0
|
|
731
|
|
732 return s:colour(l:r, l:g, l:b)
|
|
733 endfun
|
|
734
|
|
735
|
|
736
|
|
737 " }}}
|
|
738 endfun
|
|
739
|
|
740 fun! s:load_256_to_GUI_converter()
|
|
741 " 256-color To GUI-color: {{{
|
|
742
|
|
743 """ Xterm 256 color dictionary
|
|
744 " See: http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
|
|
745 "
|
|
746 let s:to_HEX = {
|
|
747 \ '00': '#000000', '01': '#800000', '02': '#008000', '03': '#808000', '04': '#000080',
|
|
748 \ '05': '#800080', '06': '#008080', '07': '#c0c0c0', '08': '#808080', '09': '#ff0000',
|
|
749 \ '10': '#00ff00', '11': '#ffff00', '12': '#0000ff', '13': '#ff00ff', '14': '#00ffff',
|
|
750 \ '15': '#ffffff', '16': '#000000', '17': '#00005f', '18': '#000087', '19': '#0000af',
|
|
751 \ '20': '#0000d7', '21': '#0000ff', '22': '#005f00', '23': '#005f5f', '24': '#005f87',
|
|
752 \ '25': '#005faf', '26': '#005fd7', '27': '#005fff', '28': '#008700', '29': '#00875f',
|
|
753 \ '30': '#008787', '31': '#0087af', '32': '#0087d7', '33': '#0087ff', '34': '#00af00',
|
|
754 \ '35': '#00af5f', '36': '#00af87', '37': '#00afaf', '38': '#00afd7', '39': '#00afff',
|
|
755 \ '40': '#00d700', '41': '#00d75f', '42': '#00d787', '43': '#00d7af', '44': '#00d7d7',
|
|
756 \ '45': '#00d7ff', '46': '#00ff00', '47': '#00ff5f', '48': '#00ff87', '49': '#00ffaf',
|
|
757 \ '50': '#00ffd7', '51': '#00ffff', '52': '#5f0000', '53': '#5f005f', '54': '#5f0087',
|
|
758 \ '55': '#5f00af', '56': '#5f00d7', '57': '#5f00ff', '58': '#5f5f00', '59': '#5f5f5f',
|
|
759 \ '60': '#5f5f87', '61': '#5f5faf', '62': '#5f5fd7', '63': '#5f5fff', '64': '#5f8700',
|
|
760 \ '65': '#5f875f', '66': '#5f8787', '67': '#5f87af', '68': '#5f87d7', '69': '#5f87ff',
|
|
761 \ '70': '#5faf00', '71': '#5faf5f', '72': '#5faf87', '73': '#5fafaf', '74': '#5fafd7',
|
|
762 \ '75': '#5fafff', '76': '#5fd700', '77': '#5fd75f', '78': '#5fd787', '79': '#5fd7af',
|
|
763 \ '80': '#5fd7d7', '81': '#5fd7ff', '82': '#5fff00', '83': '#5fff5f', '84': '#5fff87',
|
|
764 \ '85': '#5fffaf', '86': '#5fffd7', '87': '#5fffff', '88': '#870000', '89': '#87005f',
|
|
765 \ '90': '#870087', '91': '#8700af', '92': '#8700d7', '93': '#8700ff', '94': '#875f00',
|
|
766 \ '95': '#875f5f', '96': '#875f87', '97': '#875faf', '98': '#875fd7', '99': '#875fff',
|
|
767 \ '100': '#878700', '101': '#87875f', '102': '#878787', '103': '#8787af', '104': '#8787d7',
|
|
768 \ '105': '#8787ff', '106': '#87af00', '107': '#87af5f', '108': '#87af87', '109': '#87afaf',
|
|
769 \ '110': '#87afd7', '111': '#87afff', '112': '#87d700', '113': '#87d75f', '114': '#87d787',
|
|
770 \ '115': '#87d7af', '116': '#87d7d7', '117': '#87d7ff', '118': '#87ff00', '119': '#87ff5f',
|
|
771 \ '120': '#87ff87', '121': '#87ffaf', '122': '#87ffd7', '123': '#87ffff', '124': '#af0000',
|
|
772 \ '125': '#af005f', '126': '#af0087', '127': '#af00af', '128': '#af00d7', '129': '#af00ff',
|
|
773 \ '130': '#af5f00', '131': '#af5f5f', '132': '#af5f87', '133': '#af5faf', '134': '#af5fd7',
|
|
774 \ '135': '#af5fff', '136': '#af8700', '137': '#af875f', '138': '#af8787', '139': '#af87af',
|
|
775 \ '140': '#af87d7', '141': '#af87ff', '142': '#afaf00', '143': '#afaf5f', '144': '#afaf87',
|
|
776 \ '145': '#afafaf', '146': '#afafd7', '147': '#afafff', '148': '#afd700', '149': '#afd75f',
|
|
777 \ '150': '#afd787', '151': '#afd7af', '152': '#afd7d7', '153': '#afd7ff', '154': '#afff00',
|
|
778 \ '155': '#afff5f', '156': '#afff87', '157': '#afffaf', '158': '#afffd7', '159': '#afffff',
|
|
779 \ '160': '#d70000', '161': '#d7005f', '162': '#d70087', '163': '#d700af', '164': '#d700d7',
|
|
780 \ '165': '#d700ff', '166': '#d75f00', '167': '#d75f5f', '168': '#d75f87', '169': '#d75faf',
|
|
781 \ '170': '#d75fd7', '171': '#d75fff', '172': '#d78700', '173': '#d7875f', '174': '#d78787',
|
|
782 \ '175': '#d787af', '176': '#d787d7', '177': '#d787ff', '178': '#d7af00', '179': '#d7af5f',
|
|
783 \ '180': '#d7af87', '181': '#d7afaf', '182': '#d7afd7', '183': '#d7afff', '184': '#d7d700',
|
|
784 \ '185': '#d7d75f', '186': '#d7d787', '187': '#d7d7af', '188': '#d7d7d7', '189': '#d7d7ff',
|
|
785 \ '190': '#d7ff00', '191': '#d7ff5f', '192': '#d7ff87', '193': '#d7ffaf', '194': '#d7ffd7',
|
|
786 \ '195': '#d7ffff', '196': '#ff0000', '197': '#ff005f', '198': '#ff0087', '199': '#ff00af',
|
|
787 \ '200': '#ff00d7', '201': '#ff00ff', '202': '#ff5f00', '203': '#ff5f5f', '204': '#ff5f87',
|
|
788 \ '205': '#ff5faf', '206': '#ff5fd7', '207': '#ff5fff', '208': '#ff8700', '209': '#ff875f',
|
|
789 \ '210': '#ff8787', '211': '#ff87af', '212': '#ff87d7', '213': '#ff87ff', '214': '#ffaf00',
|
|
790 \ '215': '#ffaf5f', '216': '#ffaf87', '217': '#ffafaf', '218': '#ffafd7', '219': '#ffafff',
|
|
791 \ '220': '#ffd700', '221': '#ffd75f', '222': '#ffd787', '223': '#ffd7af', '224': '#ffd7d7',
|
|
792 \ '225': '#ffd7ff', '226': '#ffff00', '227': '#ffff5f', '228': '#ffff87', '229': '#ffffaf',
|
|
793 \ '230': '#ffffd7', '231': '#ffffff', '232': '#080808', '233': '#121212', '234': '#1c1c1c',
|
|
794 \ '235': '#262626', '236': '#303030', '237': '#3a3a3a', '238': '#444444', '239': '#4e4e4e',
|
|
795 \ '240': '#585858', '241': '#626262', '242': '#6c6c6c', '243': '#767676', '244': '#808080',
|
|
796 \ '245': '#8a8a8a', '246': '#949494', '247': '#9e9e9e', '248': '#a8a8a8', '249': '#b2b2b2',
|
|
797 \ '250': '#bcbcbc', '251': '#c6c6c6', '252': '#d0d0d0', '253': '#dadada', '254': '#e4e4e4',
|
|
798 \ '255': '#eeeeee' }
|
|
799
|
|
800 " }}}
|
|
801 endfun
|
|
802
|
|
803 " ========================== ENVIRONMENT ADAPTER ==============================
|
|
804
|
|
805 " Set Format Attributes: {{{
|
|
806
|
|
807 fun! s:set_format_attributes()
|
|
808 " These are the default
|
|
809 if s:mode == s:MODE_GUI_COLOR
|
|
810 let s:ft_bold = " cterm=bold gui=bold "
|
|
811 let s:ft_none = " cterm=none gui=none "
|
|
812 let s:ft_reverse = " cterm=reverse gui=reverse "
|
|
813 let s:ft_italic = " cterm=italic gui=italic "
|
|
814 let s:ft_italic_bold = " cterm=italic,bold gui=italic,bold "
|
|
815 elseif s:mode == s:MODE_256_COLOR
|
|
816 let s:ft_bold = " cterm=bold "
|
|
817 let s:ft_none = " cterm=none "
|
|
818 let s:ft_reverse = " cterm=reverse "
|
|
819 let s:ft_italic = " cterm=italic "
|
|
820 let s:ft_italic_bold = " cterm=italic,bold "
|
|
821 else
|
|
822 let s:ft_bold = ""
|
|
823 let s:ft_none = " cterm=none "
|
|
824 let s:ft_reverse = " cterm=reverse "
|
|
825 let s:ft_italic = ""
|
|
826 let s:ft_italic_bold = ""
|
|
827 endif
|
|
828
|
|
829 " Unless instructed otherwise either by theme setting or user overriding
|
|
830
|
|
831 if s:themeOpt_allow_bold == 0
|
|
832 let s:ft_bold = ""
|
|
833 endif
|
|
834 if s:themeOpt_allow_italic == 0
|
|
835 let s:ft_italic = ""
|
|
836 let s:ft_italic_bold = s:ft_bold
|
|
837 endif
|
|
838
|
|
839 endfun
|
|
840
|
|
841 " }}}
|
|
842
|
|
843 " Convert Colors If Needed: {{{
|
|
844 fun! s:convert_colors()
|
|
845 if s:theme_has_hint('NO_CONVERSION')
|
|
846 return
|
|
847 endif
|
|
848
|
|
849 if s:mode == s:MODE_GUI_COLOR
|
|
850 " if GUI color is not provided, convert from 256 color that must be available
|
|
851 call s:load_256_to_GUI_converter()
|
|
852
|
|
853 for l:color in keys(s:palette)
|
|
854 let l:value = s:palette[l:color]
|
|
855 if l:value[0] == ''
|
|
856 let l:value[0] = s:to_HEX[l:value[1]]
|
|
857 endif
|
|
858 let s:palette[l:color] = l:value
|
|
859 endfor
|
|
860
|
|
861 elseif s:mode == s:MODE_256_COLOR
|
|
862 " if 256 color is not provided, convert from GUI color that must be available
|
|
863 call s:load_GUI_to_256_converter()
|
|
864
|
|
865 for l:color in keys(s:palette)
|
|
866 let l:value = s:palette[l:color]
|
|
867 if l:value[1] == ''
|
|
868 let l:value[1] = s:to_256(l:value[0])
|
|
869 endif
|
|
870 let s:palette[l:color] = l:value
|
|
871 endfor
|
|
872 endif
|
|
873 " otherwise use the terminal colors and none of the theme colors are used
|
|
874 endfun
|
|
875
|
|
876 " }}}
|
|
877
|
|
878 " ============================ COLOR POPULARIZER ===============================
|
|
879
|
|
880 " Set Color Variables: {{{
|
|
881 fun! s:set_color_variables()
|
|
882
|
|
883 " Helper: {{{
|
|
884 " -------
|
|
885 " Function to dynamically generate variables that store the color strings
|
|
886 " for setting highlighting. Each color name will have 2 variables with prefix
|
|
887 " s:fg_ and s:bg_. For example:
|
|
888 " if a:color_name is 'Normal' and a:color_value is ['#000000', '0', 'Black'],
|
|
889 " the following 2 variables will be created:
|
|
890 " s:fg_Normal that stores the string ' guifg=#000000 '
|
|
891 " s:bg_Normal that stores the string ' guibg=#000000 '
|
|
892 " Depending on the color mode, ctermfg and ctermbg will be either 0 or Black
|
|
893 "
|
|
894 " Rationale:
|
|
895 " The whole purpose is for speed. We generate these ahead of time so that we
|
|
896 " don't have to do look up or do any if-branch when we set the highlightings.
|
|
897 "
|
|
898 " Furthermore, multiple function definitions for each mode actually reduces
|
|
899 " the need for multiple if-branches inside a single function. This is not
|
|
900 " pretty, but Vim Script is slow, so reducing if-branches in function that is
|
|
901 " often called helps speeding things up quite a bit. Think of this like macro.
|
|
902 "
|
|
903 " If you are familiar with the old code base (v0.9 and ealier), this way of
|
|
904 " generate variables dramatically reduces the loading speed.
|
|
905 " None of previous optimization tricks gets anywhere near this.
|
|
906 if s:mode == s:MODE_GUI_COLOR
|
|
907 fun! s:create_color_variables(color_name, rich_color, term_color)
|
|
908 let {'s:fg_' . a:color_name} = ' guifg=' . a:rich_color[0] . ' '
|
|
909 let {'s:bg_' . a:color_name} = ' guibg=' . a:rich_color[0] . ' '
|
|
910 let {'s:sp_' . a:color_name} = ' guisp=' . a:rich_color[0] . ' '
|
|
911 endfun
|
|
912 elseif s:mode == s:MODE_256_COLOR
|
|
913 fun! s:create_color_variables(color_name, rich_color, term_color)
|
|
914 let {'s:fg_' . a:color_name} = ' ctermfg=' . a:rich_color[1] . ' '
|
|
915 let {'s:bg_' . a:color_name} = ' ctermbg=' . a:rich_color[1] . ' '
|
|
916 let {'s:sp_' . a:color_name} = ''
|
|
917 endfun
|
|
918 else
|
|
919 fun! s:create_color_variables(color_name, rich_color, term_color)
|
|
920 let {'s:fg_' . a:color_name} = ' ctermfg=' . a:term_color . ' '
|
|
921 let {'s:bg_' . a:color_name} = ' ctermbg=' . a:term_color . ' '
|
|
922 let {'s:sp_' . a:color_name} = ''
|
|
923 endfun
|
|
924 endif
|
|
925 " }}}
|
|
926
|
|
927 " Color value format: Array [<GUI COLOR/HEX >, <256-Base>, <16-Base>]
|
|
928 " 16-Base is terminal's native color palette that can be alternated through
|
|
929 " the terminal settings. The 16-color names are according to `:h cterm-colors`
|
|
930
|
|
931 " BASIC COLORS:
|
|
932 " color00-15 are required by all themes.
|
|
933 " These are also how the terminal color palette for the target theme should be.
|
|
934 " See README for theme design guideline
|
|
935 "
|
|
936 " An example format of the below variable's value: ['#262626', '234', 'Black']
|
|
937 " Where the 1st value is HEX color for GUI Vim, 2nd value is for 256-color terminal,
|
|
938 " and the color name on the right is for 16-color terminal (the actual terminal colors
|
|
939 " can be different from what the color names suggest). See :h cterm-colors
|
|
940 "
|
|
941 " Depending on the provided color palette and current Vim, the 1st and 2nd
|
|
942 " parameter might not exist, for example, on 16-color terminal, the variables below
|
|
943 " only store the color names to use the terminal color palette which is the only
|
|
944 " thing available therefore no need for GUI-color or 256-color.
|
|
945
|
|
946 let color00 = get(s:palette, 'color00')
|
|
947 let color01 = get(s:palette, 'color01')
|
|
948 let color02 = get(s:palette, 'color02')
|
|
949 let color03 = get(s:palette, 'color03')
|
|
950 let color04 = get(s:palette, 'color04')
|
|
951 let color05 = get(s:palette, 'color05')
|
|
952 let color06 = get(s:palette, 'color06')
|
|
953 let color07 = get(s:palette, 'color07')
|
|
954 let color08 = get(s:palette, 'color08')
|
|
955 let color09 = get(s:palette, 'color09')
|
|
956 let color10 = get(s:palette, 'color10')
|
|
957 let color11 = get(s:palette, 'color11')
|
|
958 let color12 = get(s:palette, 'color12')
|
|
959 let color13 = get(s:palette, 'color13')
|
|
960 let color14 = get(s:palette, 'color14')
|
|
961 let color15 = get(s:palette, 'color15')
|
|
962
|
|
963 call s:create_color_variables('background', color00 , 'Black')
|
|
964 call s:create_color_variables('negative', color01 , 'DarkRed')
|
|
965 call s:create_color_variables('positive', color02 , 'DarkGreen')
|
|
966 call s:create_color_variables('olive', color03 , 'DarkYellow') " string
|
|
967 call s:create_color_variables('neutral', color04 , 'DarkBlue')
|
|
968 call s:create_color_variables('comment', color05 , 'DarkMagenta')
|
|
969 call s:create_color_variables('navy', color06 , 'DarkCyan') " storageclass
|
|
970 call s:create_color_variables('foreground', color07 , 'LightGray')
|
|
971
|
|
972 call s:create_color_variables('nontext', color08 , 'DarkGray')
|
|
973 call s:create_color_variables('red', color09 , 'LightRed') " import / try/catch
|
|
974 call s:create_color_variables('pink', color10 , 'LightGreen') " statement, type
|
|
975 call s:create_color_variables('purple', color11 , 'LightYellow') " if / conditional
|
|
976 call s:create_color_variables('accent', color12 , 'LightBlue')
|
|
977 call s:create_color_variables('orange', color13 , 'LightMagenta') " number
|
|
978 call s:create_color_variables('blue', color14 , 'LightCyan') " other keyword
|
|
979 call s:create_color_variables('highlight', color15 , 'White')
|
|
980
|
|
981 " Note: special case for FoldColumn group. I want to get rid of this case.
|
|
982 call s:create_color_variables('transparent', [color00[0], 'none'], 'none')
|
|
983
|
|
984 " EXTENDED COLORS:
|
|
985 " From here on, all colors are optional and must have default values (3rd parameter of the
|
|
986 " `get` command) that point to the above basic colors in case the target theme doesn't
|
|
987 " provide the extended colors. The default values should be reasonably sensible.
|
|
988 " The terminal color must be provided also.
|
|
989
|
|
990 call s:create_color_variables('aqua', get(s:palette, 'color16', color14) , 'LightCyan')
|
|
991 call s:create_color_variables('green', get(s:palette, 'color17', color13) , 'LightMagenta')
|
|
992 call s:create_color_variables('wine', get(s:palette, 'color18', color11) , 'LightYellow')
|
|
993
|
|
994 " LineNumber: when set number
|
|
995 call s:create_color_variables('linenumber_fg', get(s:palette, 'linenumber_fg', color08) , 'DarkGray')
|
|
996 call s:create_color_variables('linenumber_bg', get(s:palette, 'linenumber_bg', color00) , 'Black')
|
|
997
|
|
998 " Vertical Split: when there are more than 1 window side by side, ex: <C-W><C-V>
|
|
999 call s:create_color_variables('vertsplit_fg', get(s:palette, 'vertsplit_fg', color15) , 'White')
|
|
1000 call s:create_color_variables('vertsplit_bg', get(s:palette, 'vertsplit_bg', color00) , 'Black')
|
|
1001
|
|
1002 " Statusline: when set status=2
|
|
1003 call s:create_color_variables('statusline_active_fg', get(s:palette, 'statusline_active_fg', color00) , 'Black')
|
|
1004 call s:create_color_variables('statusline_active_bg', get(s:palette, 'statusline_active_bg', color15) , 'White')
|
|
1005 call s:create_color_variables('statusline_inactive_fg', get(s:palette, 'statusline_inactive_fg', color07) , 'LightGray')
|
|
1006 call s:create_color_variables('statusline_inactive_bg', get(s:palette, 'statusline_inactive_bg', color08) , 'DarkGray')
|
|
1007
|
|
1008
|
|
1009 " Cursor: in normal mode
|
|
1010 call s:create_color_variables('cursor_fg', get(s:palette, 'cursor_fg', color00) , 'Black')
|
|
1011 call s:create_color_variables('cursor_bg', get(s:palette, 'cursor_bg', color07) , 'LightGray')
|
|
1012
|
|
1013 call s:create_color_variables('cursorline', get(s:palette, 'cursorline', color00) , 'Black')
|
|
1014
|
|
1015 " CursorColumn: when set cursorcolumn
|
|
1016 call s:create_color_variables('cursorcolumn', get(s:palette, 'cursorcolumn', color00) , 'Black')
|
|
1017
|
|
1018 " CursorLine Number: when set cursorline number
|
|
1019 call s:create_color_variables('cursorlinenr_fg', get(s:palette, 'cursorlinenr_fg', color13) , 'LightMagenta')
|
|
1020 call s:create_color_variables('cursorlinenr_bg', get(s:palette, 'cursorlinenr_bg', color00) , 'Black')
|
|
1021
|
|
1022 " Popup Menu: when <C-X><C-N> for autocomplete
|
|
1023 call s:create_color_variables('popupmenu_fg', get(s:palette, 'popupmenu_fg', color07) , 'LightGray')
|
|
1024 call s:create_color_variables('popupmenu_bg', get(s:palette, 'popupmenu_bg', color08) , 'DarkGray') " TODO: double check this, might resolve an issue
|
|
1025
|
|
1026 " Search: ex: when * on a word
|
|
1027 call s:create_color_variables('search_fg', get(s:palette, 'search_fg', color00) , 'Black')
|
|
1028 call s:create_color_variables('search_bg', get(s:palette, 'search_bg', color15) , 'Yellow')
|
|
1029
|
|
1030 " Todo: ex: TODO
|
|
1031 call s:create_color_variables('todo_fg', get(s:palette, 'todo_fg', color05) , 'LightYellow')
|
|
1032 call s:create_color_variables('todo_bg', get(s:palette, 'todo_bg', color00) , 'Black')
|
|
1033
|
|
1034 " Error: ex: turn spell on and have invalid words
|
|
1035 call s:create_color_variables('error_fg', get(s:palette, 'error_fg', color01) , 'DarkRed')
|
|
1036 call s:create_color_variables('error_bg', get(s:palette, 'error_bg', color00) , 'Black')
|
|
1037
|
|
1038 " Match Parenthesis: selecting an opening/closing pair and the other one will be highlighted
|
|
1039 call s:create_color_variables('matchparen_fg', get(s:palette, 'matchparen_fg', color00) , 'LightMagenta')
|
|
1040 call s:create_color_variables('matchparen_bg', get(s:palette, 'matchparen_bg', color05) , 'Black')
|
|
1041
|
|
1042 " Visual:
|
|
1043 call s:create_color_variables('visual_fg', get(s:palette, 'visual_fg', color08) , 'Black')
|
|
1044 call s:create_color_variables('visual_bg', get(s:palette, 'visual_bg', color07) , 'White')
|
|
1045
|
|
1046 " Folded:
|
|
1047 call s:create_color_variables('folded_fg', get(s:palette, 'folded_fg', color00) , 'Black')
|
|
1048 call s:create_color_variables('folded_bg', get(s:palette, 'folded_bg', color05) , 'DarkYellow')
|
|
1049
|
|
1050 " WildMenu: Autocomplete command, ex: :color <tab><tab>
|
|
1051 call s:create_color_variables('wildmenu_fg', get(s:palette, 'wildmenu_fg', color00) , 'Black')
|
|
1052 call s:create_color_variables('wildmenu_bg', get(s:palette, 'wildmenu_bg', color06) , 'LightGray')
|
|
1053
|
|
1054 " Spelling: when spell on and there are spelling problems like this for example: papercolor. a vim color scheme
|
|
1055 call s:create_color_variables('spellbad', get(s:palette, 'spellbad', color04) , 'DarkRed')
|
|
1056 call s:create_color_variables('spellcap', get(s:palette, 'spellcap', color05) , 'DarkMagenta')
|
|
1057 call s:create_color_variables('spellrare', get(s:palette, 'spellrare', color06) , 'DarkYellow')
|
|
1058 call s:create_color_variables('spelllocal', get(s:palette, 'spelllocal', color01) , 'DarkBlue')
|
|
1059
|
|
1060 " Diff:
|
|
1061 call s:create_color_variables('diffadd_fg', get(s:palette, 'diffadd_fg', color00) , 'Black')
|
|
1062 call s:create_color_variables('diffadd_bg', get(s:palette, 'diffadd_bg', color02) , 'DarkGreen')
|
|
1063
|
|
1064 call s:create_color_variables('diffdelete_fg', get(s:palette, 'diffdelete_fg', color00) , 'Black')
|
|
1065 call s:create_color_variables('diffdelete_bg', get(s:palette, 'diffdelete_bg', color04) , 'DarkRed')
|
|
1066
|
|
1067 call s:create_color_variables('difftext_fg', get(s:palette, 'difftext_fg', color00) , 'Black')
|
|
1068 call s:create_color_variables('difftext_bg', get(s:palette, 'difftext_bg', color06) , 'DarkYellow')
|
|
1069
|
|
1070 call s:create_color_variables('diffchange_fg', get(s:palette, 'diffchange_fg', color00) , 'Black')
|
|
1071 call s:create_color_variables('diffchange_bg', get(s:palette, 'diffchange_bg', color14) , 'LightYellow')
|
|
1072
|
|
1073 " Tabline: when having tabs, ex: :tabnew
|
|
1074 call s:create_color_variables('tabline_bg', get(s:palette, 'tabline_bg', color00) , 'Black')
|
|
1075 call s:create_color_variables('tabline_active_fg', get(s:palette, 'tabline_active_fg', color07) , 'LightGray')
|
|
1076 call s:create_color_variables('tabline_active_bg', get(s:palette, 'tabline_active_bg', color00) , 'Black')
|
|
1077 call s:create_color_variables('tabline_inactive_fg', get(s:palette, 'tabline_inactive_fg', color07) , 'Black')
|
|
1078 call s:create_color_variables('tabline_inactive_bg', get(s:palette, 'tabline_inactive_bg', color08) , 'DarkMagenta')
|
|
1079
|
|
1080 " Plugin: BufTabLine https://github.com/ap/vim-buftabline
|
|
1081 call s:create_color_variables('buftabline_bg', get(s:palette, 'buftabline_bg', color00) , 'Black')
|
|
1082 call s:create_color_variables('buftabline_current_fg', get(s:palette, 'buftabline_current_fg', color07) , 'LightGray')
|
|
1083 call s:create_color_variables('buftabline_current_bg', get(s:palette, 'buftabline_current_bg', color05) , 'DarkMagenta')
|
|
1084 call s:create_color_variables('buftabline_active_fg', get(s:palette, 'buftabline_active_fg', color07) , 'LightGray')
|
|
1085 call s:create_color_variables('buftabline_active_bg', get(s:palette, 'buftabline_active_bg', color12) , 'LightBlue')
|
|
1086 call s:create_color_variables('buftabline_inactive_fg', get(s:palette, 'buftabline_inactive_fg', color07) , 'LightGray')
|
|
1087 call s:create_color_variables('buftabline_inactive_bg', get(s:palette, 'buftabline_inactive_bg', color00) , 'Black')
|
|
1088
|
|
1089 " Neovim terminal colors https://neovim.io/doc/user/nvim_terminal_emulator.html#nvim-terminal-emulator-configuration
|
|
1090 " TODO: Fix this
|
|
1091 let g:terminal_color_0 = color00[0]
|
|
1092 let g:terminal_color_1 = color01[0]
|
|
1093 let g:terminal_color_2 = color02[0]
|
|
1094 let g:terminal_color_3 = color03[0]
|
|
1095 let g:terminal_color_4 = color04[0]
|
|
1096 let g:terminal_color_5 = color05[0]
|
|
1097 let g:terminal_color_6 = color06[0]
|
|
1098 let g:terminal_color_7 = color07[0]
|
|
1099 let g:terminal_color_8 = color08[0]
|
|
1100 let g:terminal_color_9 = color09[0]
|
|
1101 let g:terminal_color_10 = color10[0]
|
|
1102 let g:terminal_color_11 = color11[0]
|
|
1103 let g:terminal_color_12 = color12[0]
|
|
1104 let g:terminal_color_13 = color13[0]
|
|
1105 let g:terminal_color_14 = color14[0]
|
|
1106 let g:terminal_color_15 = color15[0]
|
|
1107
|
|
1108 " Vim 8's :terminal buffer ANSI colors
|
|
1109 if has('terminal')
|
|
1110 let g:terminal_ansi_colors = [color00[0], color01[0], color02[0], color03[0],
|
|
1111 \ color04[0], color05[0], color06[0], color07[0], color08[0], color09[0],
|
|
1112 \ color10[0], color11[0], color12[0], color13[0], color14[0], color15[0]]
|
|
1113 endif
|
|
1114
|
|
1115 endfun
|
|
1116 " }}}
|
|
1117
|
|
1118 " Apply Syntax Highlightings: {{{
|
|
1119
|
|
1120 fun! s:apply_syntax_highlightings()
|
|
1121
|
|
1122 if s:themeOpt_transparent_background
|
|
1123 exec 'hi Normal' . s:fg_foreground
|
|
1124 " Switching between dark & light variant through `set background`
|
|
1125 " NOTE: Handle background switching right after `Normal` group because of
|
|
1126 " God-know-why reason. Not doing this way had caused issue before
|
|
1127 if s:is_dark " DARK VARIANT
|
|
1128 set background=dark
|
|
1129 else " LIGHT VARIANT
|
|
1130 set background=light
|
|
1131 endif
|
|
1132
|
|
1133 exec 'hi NonText' . s:fg_nontext
|
|
1134 exec 'hi LineNr' . s:fg_linenumber_fg
|
|
1135 exec 'hi Conceal' . s:fg_linenumber_fg
|
|
1136 exec 'hi VertSplit' . s:fg_vertsplit_fg . s:ft_none
|
|
1137 exec 'hi FoldColumn' . s:fg_folded_fg . s:bg_transparent . s:ft_none
|
|
1138 else
|
|
1139 exec 'hi Normal' . s:fg_foreground . s:bg_background
|
|
1140 " Switching between dark & light variant through `set background`
|
|
1141 if s:is_dark " DARK VARIANT
|
|
1142 set background=dark
|
|
1143 exec 'hi EndOfBuffer' . s:fg_cursor_fg . s:ft_none
|
|
1144 else " LIGHT VARIANT
|
|
1145 set background=light
|
|
1146 endif
|
|
1147
|
|
1148 exec 'hi NonText' . s:fg_nontext . s:bg_background
|
|
1149 exec 'hi LineNr' . s:fg_linenumber_fg . s:bg_linenumber_bg
|
|
1150 exec 'hi Conceal' . s:fg_linenumber_fg . s:bg_linenumber_bg
|
|
1151 exec 'hi VertSplit' . s:fg_vertsplit_bg . s:bg_vertsplit_fg
|
|
1152 exec 'hi FoldColumn' . s:fg_folded_fg . s:bg_background . s:ft_none
|
|
1153 endif
|
|
1154
|
|
1155 exec 'hi Cursor' . s:fg_cursor_fg . s:bg_cursor_bg
|
|
1156 exec 'hi SpecialKey' . s:fg_nontext
|
|
1157 exec 'hi Search' . s:fg_search_fg . s:bg_search_bg
|
|
1158 exec 'hi StatusLine' . s:fg_statusline_active_bg . s:bg_statusline_active_fg
|
|
1159 exec 'hi StatusLineNC' . s:fg_statusline_inactive_bg . s:bg_statusline_inactive_fg
|
|
1160 exec 'hi StatusLineTerm' . s:fg_statusline_active_bg . s:bg_statusline_active_fg
|
|
1161 exec 'hi StatusLineTermNC' . s:fg_statusline_inactive_bg . s:bg_statusline_inactive_fg
|
|
1162 exec 'hi Visual' . s:fg_visual_fg . s:bg_visual_bg
|
|
1163 exec 'hi Directory' . s:fg_blue
|
|
1164 exec 'hi ModeMsg' . s:fg_olive
|
|
1165 exec 'hi MoreMsg' . s:fg_olive
|
|
1166 exec 'hi Question' . s:fg_olive
|
|
1167 exec 'hi WarningMsg' . s:fg_pink
|
|
1168 exec 'hi MatchParen' . s:fg_matchparen_fg . s:bg_matchparen_bg
|
|
1169 exec 'hi Folded' . s:fg_folded_fg . s:bg_folded_bg
|
|
1170 exec 'hi WildMenu' . s:fg_wildmenu_fg . s:bg_wildmenu_bg . s:ft_bold
|
|
1171
|
|
1172 if version >= 700
|
|
1173 exec 'hi CursorLine' . s:bg_cursorline . s:ft_none
|
|
1174 if s:mode == s:MODE_16_COLOR
|
|
1175 exec 'hi CursorLineNr' . s:fg_cursorlinenr_fg . s:bg_cursorlinenr_bg
|
|
1176 else
|
|
1177 exec 'hi CursorLineNr' . s:fg_cursorlinenr_fg . s:bg_cursorlinenr_bg . s:ft_none
|
|
1178 endif
|
|
1179 exec 'hi CursorColumn' . s:bg_cursorcolumn . s:ft_none
|
|
1180 exec 'hi PMenu' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
1181 exec 'hi PMenuSel' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_reverse
|
|
1182 if s:themeOpt_transparent_background
|
|
1183 exec 'hi SignColumn' . s:fg_green . s:ft_none
|
|
1184 else
|
|
1185 exec 'hi SignColumn' . s:fg_green . s:bg_background . s:ft_none
|
|
1186 endif
|
|
1187 end
|
|
1188 if version >= 703
|
|
1189 exec 'hi ColorColumn' . s:bg_cursorcolumn . s:ft_none
|
|
1190 end
|
|
1191
|
|
1192 exec 'hi TabLine' . s:fg_tabline_inactive_fg . s:bg_tabline_inactive_bg . s:ft_none
|
|
1193 exec 'hi TabLineFill' . s:fg_tabline_bg . s:bg_tabline_bg . s:ft_none
|
|
1194 exec 'hi TabLineSel' . s:fg_tabline_active_fg . s:bg_tabline_active_bg . s:ft_none
|
|
1195
|
|
1196 exec 'hi BufTabLineCurrent' . s:fg_buftabline_current_fg . s:bg_buftabline_current_bg . s:ft_none
|
|
1197 exec 'hi BufTabLineActive' . s:fg_buftabline_active_fg . s:bg_buftabline_active_bg . s:ft_none
|
|
1198 exec 'hi BufTabLineHidden' . s:fg_buftabline_inactive_fg . s:bg_buftabline_inactive_bg . s:ft_none
|
|
1199 exec 'hi BufTabLineFill' . s:bg_buftabline_bg . s:ft_none
|
|
1200
|
|
1201 " Standard Group Highlighting:
|
|
1202 exec 'hi Comment' . s:fg_comment . s:ft_italic
|
|
1203
|
|
1204 exec 'hi Constant' . s:fg_orange
|
|
1205 exec 'hi String' . s:fg_olive
|
|
1206 exec 'hi Character' . s:fg_olive
|
|
1207 exec 'hi Number' . s:fg_orange
|
|
1208 exec 'hi Boolean' . s:fg_green . s:ft_bold
|
|
1209 exec 'hi Float' . s:fg_orange
|
|
1210
|
|
1211 exec 'hi Identifier' . s:fg_navy
|
|
1212 exec 'hi Function' . s:fg_foreground
|
|
1213
|
|
1214 exec 'hi Statement' . s:fg_pink . s:ft_none
|
|
1215 exec 'hi Conditional' . s:fg_purple . s:ft_bold
|
|
1216 exec 'hi Repeat' . s:fg_purple . s:ft_bold
|
|
1217 exec 'hi Label' . s:fg_blue
|
|
1218 exec 'hi Operator' . s:fg_aqua . s:ft_none
|
|
1219 exec 'hi Keyword' . s:fg_blue
|
|
1220 exec 'hi Exception' . s:fg_red
|
|
1221
|
|
1222 exec 'hi PreProc' . s:fg_blue
|
|
1223 exec 'hi Include' . s:fg_red
|
|
1224 exec 'hi Define' . s:fg_blue
|
|
1225 exec 'hi Macro' . s:fg_blue
|
|
1226 exec 'hi PreCondit' . s:fg_aqua
|
|
1227
|
|
1228 exec 'hi Type' . s:fg_pink . s:ft_bold
|
|
1229 exec 'hi StorageClass' . s:fg_navy . s:ft_bold
|
|
1230 exec 'hi Structure' . s:fg_blue . s:ft_bold
|
|
1231 exec 'hi Typedef' . s:fg_pink . s:ft_bold
|
|
1232
|
|
1233 exec 'hi Special' . s:fg_foreground
|
|
1234 exec 'hi SpecialChar' . s:fg_foreground
|
|
1235 exec 'hi Tag' . s:fg_green
|
|
1236 exec 'hi Delimiter' . s:fg_aqua
|
|
1237 exec 'hi SpecialComment' . s:fg_comment . s:ft_bold
|
|
1238 exec 'hi Debug' . s:fg_orange
|
|
1239
|
|
1240 exec 'hi Error' . s:fg_error_fg . s:bg_error_bg
|
|
1241 exec 'hi Todo' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
1242
|
|
1243 exec 'hi Title' . s:fg_comment
|
|
1244 exec 'hi Global' . s:fg_blue
|
|
1245
|
|
1246 " Neovim (LSP) diagnostics
|
|
1247 if has('nvim')
|
|
1248 exec 'hi LspDiagnosticsDefaultError' . s:fg_error_fg . s:bg_error_bg
|
|
1249 exec 'hi LspDiagnosticsDefaultWarning' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
1250 exec 'hi LspDiagnosticsDefaultInformation' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
1251 exec 'hi LspDiagnosticsDefaultHint' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
1252
|
|
1253 exec 'hi LspDiagnosticsUnderlineError cterm=undercurl gui=undercurl' . s:sp_error_fg
|
|
1254 exec 'hi LspDiagnosticsUnderlineWarning cterm=undercurl gui=undercurl' . s:sp_todo_fg
|
|
1255 exec 'hi LspDiagnosticsUnderlineInformation cterm=undercurl gui=undercurl' . s:sp_todo_fg
|
|
1256 exec 'hi LspDiagnosticsUnderlineHint cterm=undercurl gui=undercurl' . s:sp_todo_fg
|
|
1257
|
|
1258 hi! link DiagnosticError LspDiagnosticsDefaultError
|
|
1259 hi! link DiagnosticWarn LspDiagnosticsDefaultWarning
|
|
1260 hi! link DiagnosticInfo LspDiagnosticsDefaultInformation
|
|
1261 hi! link DiagnosticHint LspDiagnosticsDefaultHint
|
|
1262
|
|
1263 hi! link DiagnosticUnderlineError LspDiagnosticsUnderlineError
|
|
1264 hi! link DiagnosticUnderlineWarn LspDiagnosticsUnderlineWarning
|
|
1265 hi! link DiagnosticUnderlineInfo LspDiagnosticsUnderlineInformation
|
|
1266 hi! link DiagnosticUnderlineHint LspDiagnosticsUnderlineHint
|
673
|
1267
|
662
|
1268 endif
|
|
1269
|
|
1270 " Extension {{{
|
|
1271 " VimL Highlighting
|
|
1272 exec 'hi vimCommand' . s:fg_pink
|
|
1273 exec 'hi vimVar' . s:fg_navy
|
|
1274 exec 'hi vimFuncKey' . s:fg_pink
|
|
1275 exec 'hi vimFunction' . s:fg_blue . s:ft_bold
|
|
1276 exec 'hi vimNotFunc' . s:fg_pink
|
|
1277 exec 'hi vimMap' . s:fg_red
|
|
1278 exec 'hi vimAutoEvent' . s:fg_aqua . s:ft_bold
|
|
1279 exec 'hi vimMapModKey' . s:fg_aqua
|
|
1280 exec 'hi vimFuncName' . s:fg_purple
|
|
1281 exec 'hi vimIsCommand' . s:fg_foreground
|
|
1282 exec 'hi vimFuncVar' . s:fg_aqua
|
|
1283 exec 'hi vimLet' . s:fg_red
|
|
1284 exec 'hi vimContinue' . s:fg_aqua
|
|
1285 exec 'hi vimMapRhsExtend' . s:fg_foreground
|
|
1286 exec 'hi vimCommentTitle' . s:fg_comment . s:ft_italic_bold
|
|
1287 exec 'hi vimBracket' . s:fg_aqua
|
|
1288 exec 'hi vimParenSep' . s:fg_aqua
|
|
1289 exec 'hi vimNotation' . s:fg_aqua
|
|
1290 exec 'hi vimOper' . s:fg_foreground
|
|
1291 exec 'hi vimOperParen' . s:fg_foreground
|
|
1292 exec 'hi vimSynType' . s:fg_purple
|
|
1293 exec 'hi vimSynReg' . s:fg_pink . s:ft_none
|
|
1294 exec 'hi vimSynRegion' . s:fg_foreground
|
|
1295 exec 'hi vimSynMtchGrp' . s:fg_pink
|
|
1296 exec 'hi vimSynNextgroup' . s:fg_pink
|
|
1297 exec 'hi vimSynKeyRegion' . s:fg_green
|
|
1298 exec 'hi vimSynRegOpt' . s:fg_blue
|
|
1299 exec 'hi vimSynMtchOpt' . s:fg_blue
|
|
1300 exec 'hi vimSynContains' . s:fg_pink
|
|
1301 exec 'hi vimGroupName' . s:fg_foreground
|
|
1302 exec 'hi vimGroupList' . s:fg_foreground
|
|
1303 exec 'hi vimHiGroup' . s:fg_foreground
|
|
1304 exec 'hi vimGroup' . s:fg_navy . s:ft_bold
|
|
1305 exec 'hi vimOnlyOption' . s:fg_blue
|
|
1306
|
|
1307 " Makefile Highlighting
|
|
1308 exec 'hi makeIdent' . s:fg_blue
|
|
1309 exec 'hi makeSpecTarget' . s:fg_olive
|
|
1310 exec 'hi makeTarget' . s:fg_red
|
|
1311 exec 'hi makeStatement' . s:fg_aqua . s:ft_bold
|
|
1312 exec 'hi makeCommands' . s:fg_foreground
|
|
1313 exec 'hi makeSpecial' . s:fg_orange . s:ft_bold
|
|
1314
|
|
1315 " CMake Highlighting (Builtin)
|
|
1316 exec 'hi cmakeStatement' . s:fg_blue
|
|
1317 exec 'hi cmakeArguments' . s:fg_foreground
|
|
1318 exec 'hi cmakeVariableValue' . s:fg_pink
|
|
1319
|
|
1320 " CMake Highlighting (Plugin: https://github.com/pboettch/vim-cmake-syntax)
|
|
1321 exec 'hi cmakeCommand' . s:fg_blue
|
|
1322 exec 'hi cmakeCommandConditional' . s:fg_purple . s:ft_bold
|
|
1323 exec 'hi cmakeKWset' . s:fg_orange
|
|
1324 exec 'hi cmakeKWvariable_watch' . s:fg_orange
|
|
1325 exec 'hi cmakeKWif' . s:fg_orange
|
|
1326 exec 'hi cmakeArguments' . s:fg_foreground
|
|
1327 exec 'hi cmakeKWproject' . s:fg_pink
|
|
1328 exec 'hi cmakeGeneratorExpressions' . s:fg_orange
|
|
1329 exec 'hi cmakeGeneratorExpression' . s:fg_aqua
|
|
1330 exec 'hi cmakeVariable' . s:fg_pink
|
|
1331 exec 'hi cmakeProperty' . s:fg_aqua
|
|
1332 exec 'hi cmakeKWforeach' . s:fg_aqua
|
|
1333 exec 'hi cmakeKWunset' . s:fg_aqua
|
|
1334 exec 'hi cmakeKWmacro' . s:fg_aqua
|
|
1335 exec 'hi cmakeKWget_property' . s:fg_aqua
|
|
1336 exec 'hi cmakeKWset_tests_properties' . s:fg_aqua
|
|
1337 exec 'hi cmakeKWmessage' . s:fg_aqua
|
|
1338 exec 'hi cmakeKWinstall_targets' . s:fg_orange
|
|
1339 exec 'hi cmakeKWsource_group' . s:fg_orange
|
|
1340 exec 'hi cmakeKWfind_package' . s:fg_aqua
|
|
1341 exec 'hi cmakeKWstring' . s:fg_olive
|
|
1342 exec 'hi cmakeKWinstall' . s:fg_aqua
|
|
1343 exec 'hi cmakeKWtarget_sources' . s:fg_orange
|
|
1344
|
|
1345 " C Highlighting
|
|
1346 exec 'hi cType' . s:fg_pink . s:ft_bold
|
|
1347 exec 'hi cFormat' . s:fg_olive
|
|
1348 exec 'hi cStorageClass' . s:fg_navy . s:ft_bold
|
|
1349
|
|
1350 exec 'hi cBoolean' . s:fg_green . s:ft_bold
|
|
1351 exec 'hi cCharacter' . s:fg_olive
|
|
1352 exec 'hi cConstant' . s:fg_green . s:ft_bold
|
|
1353 exec 'hi cConditional' . s:fg_purple . s:ft_bold
|
|
1354 exec 'hi cSpecial' . s:fg_olive . s:ft_bold
|
|
1355 exec 'hi cDefine' . s:fg_blue
|
|
1356 exec 'hi cNumber' . s:fg_orange
|
|
1357 exec 'hi cPreCondit' . s:fg_aqua
|
|
1358 exec 'hi cRepeat' . s:fg_purple . s:ft_bold
|
|
1359 exec 'hi cLabel' . s:fg_aqua
|
|
1360 " exec 'hi cAnsiFunction' . s:fg_aqua . s:ft_bold
|
|
1361 " exec 'hi cAnsiName' . s:fg_pink
|
|
1362 exec 'hi cDelimiter' . s:fg_blue
|
|
1363 " exec 'hi cBraces' . s:fg_foreground
|
|
1364 " exec 'hi cIdentifier' . s:fg_blue . s:bg_pink
|
|
1365 " exec 'hi cSemiColon' . s:bg_blue
|
|
1366 exec 'hi cOperator' . s:fg_aqua
|
|
1367 " exec 'hi cStatement' . s:fg_pink
|
|
1368 " exec 'hi cTodo' . s:fg_comment . s:ft_bold
|
|
1369 " exec 'hi cStructure' . s:fg_blue . s:ft_bold
|
|
1370 exec 'hi cCustomParen' . s:fg_foreground
|
|
1371 " exec 'hi cCustomFunc' . s:fg_foreground
|
|
1372 " exec 'hi cUserFunction' . s:fg_blue . s:ft_bold
|
|
1373 exec 'hi cOctalZero' . s:fg_purple . s:ft_bold
|
|
1374 if s:langOpt_c__highlight_builtins == 1
|
|
1375 exec 'hi cFunction' . s:fg_blue
|
|
1376 else
|
|
1377 exec 'hi cFunction' . s:fg_foreground
|
|
1378 endif
|
|
1379
|
|
1380 " CPP highlighting
|
|
1381 exec 'hi cppBoolean' . s:fg_green . s:ft_bold
|
|
1382 exec 'hi cppSTLnamespace' . s:fg_purple
|
|
1383 exec 'hi cppSTLexception' . s:fg_pink
|
|
1384 exec 'hi cppSTLfunctional' . s:fg_foreground . s:ft_bold
|
|
1385 exec 'hi cppSTLiterator' . s:fg_foreground . s:ft_bold
|
|
1386 exec 'hi cppExceptions' . s:fg_red
|
|
1387 exec 'hi cppStatement' . s:fg_blue
|
|
1388 exec 'hi cppStorageClass' . s:fg_navy . s:ft_bold
|
|
1389 exec 'hi cppAccess' . s:fg_orange . s:ft_bold
|
|
1390 if s:langOpt_cpp__highlight_standard_library == 1
|
|
1391 exec 'hi cppSTLconstant' . s:fg_green . s:ft_bold
|
|
1392 exec 'hi cppSTLtype' . s:fg_pink . s:ft_bold
|
|
1393 exec 'hi cppSTLfunction' . s:fg_blue
|
|
1394 exec 'hi cppSTLios' . s:fg_olive . s:ft_bold
|
|
1395 else
|
|
1396 exec 'hi cppSTLconstant' . s:fg_foreground
|
|
1397 exec 'hi cppSTLtype' . s:fg_foreground
|
|
1398 exec 'hi cppSTLfunction' . s:fg_foreground
|
|
1399 exec 'hi cppSTLios' . s:fg_foreground
|
|
1400 endif
|
|
1401 " exec 'hi cppSTL' . s:fg_blue
|
|
1402
|
|
1403 " Rust highlighting
|
|
1404 exec 'hi rustKeyword' . s:fg_pink
|
|
1405 exec 'hi rustModPath' . s:fg_blue
|
|
1406 exec 'hi rustModPathSep' . s:fg_blue
|
|
1407 exec 'hi rustLifetime' . s:fg_purple
|
|
1408 exec 'hi rustStructure' . s:fg_aqua . s:ft_bold
|
|
1409 exec 'hi rustAttribute' . s:fg_aqua . s:ft_bold
|
|
1410 exec 'hi rustPanic' . s:fg_olive . s:ft_bold
|
|
1411 exec 'hi rustTrait' . s:fg_blue . s:ft_bold
|
|
1412 exec 'hi rustEnum' . s:fg_green . s:ft_bold
|
|
1413 exec 'hi rustEnumVariant' . s:fg_green
|
|
1414 exec 'hi rustSelf' . s:fg_orange
|
|
1415 exec 'hi rustSigil' . s:fg_aqua . s:ft_bold
|
|
1416 exec 'hi rustOperator' . s:fg_aqua . s:ft_bold
|
|
1417 exec 'hi rustMacro' . s:fg_olive . s:ft_bold
|
|
1418 exec 'hi rustMacroVariable' . s:fg_olive
|
|
1419 exec 'hi rustAssert' . s:fg_olive . s:ft_bold
|
|
1420 exec 'hi rustConditional' . s:fg_purple . s:ft_bold
|
|
1421
|
|
1422 " Lex highlighting
|
|
1423 exec 'hi lexCFunctions' . s:fg_foreground
|
|
1424 exec 'hi lexAbbrv' . s:fg_purple
|
|
1425 exec 'hi lexAbbrvRegExp' . s:fg_aqua
|
|
1426 exec 'hi lexAbbrvComment' . s:fg_comment
|
|
1427 exec 'hi lexBrace' . s:fg_navy
|
|
1428 exec 'hi lexPat' . s:fg_aqua
|
|
1429 exec 'hi lexPatComment' . s:fg_comment
|
|
1430 exec 'hi lexPatTag' . s:fg_orange
|
|
1431 " exec 'hi lexPatBlock' . s:fg_foreground . s:ft_bold
|
|
1432 exec 'hi lexSlashQuote' . s:fg_foreground
|
|
1433 exec 'hi lexSep' . s:fg_foreground
|
|
1434 exec 'hi lexStartState' . s:fg_orange
|
|
1435 exec 'hi lexPatTagZone' . s:fg_olive . s:ft_bold
|
|
1436 exec 'hi lexMorePat' . s:fg_olive . s:ft_bold
|
|
1437 exec 'hi lexOptions' . s:fg_olive . s:ft_bold
|
|
1438 exec 'hi lexPatString' . s:fg_olive
|
|
1439
|
|
1440 " Yacc highlighting
|
|
1441 exec 'hi yaccNonterminal' . s:fg_navy
|
|
1442 exec 'hi yaccDelim' . s:fg_orange
|
|
1443 exec 'hi yaccInitKey' . s:fg_aqua
|
|
1444 exec 'hi yaccInit' . s:fg_navy
|
|
1445 exec 'hi yaccKey' . s:fg_purple
|
|
1446 exec 'hi yaccVar' . s:fg_aqua
|
|
1447
|
|
1448 " NASM highlighting
|
|
1449 exec 'hi nasmStdInstruction' . s:fg_navy
|
|
1450 exec 'hi nasmGen08Register' . s:fg_aqua
|
|
1451 exec 'hi nasmGen16Register' . s:fg_aqua
|
|
1452 exec 'hi nasmGen32Register' . s:fg_aqua
|
|
1453 exec 'hi nasmGen64Register' . s:fg_aqua
|
|
1454 exec 'hi nasmHexNumber' . s:fg_purple
|
|
1455 exec 'hi nasmStorage' . s:fg_aqua . s:ft_bold
|
|
1456 exec 'hi nasmLabel' . s:fg_pink
|
|
1457 exec 'hi nasmDirective' . s:fg_blue . s:ft_bold
|
|
1458 exec 'hi nasmLocalLabel' . s:fg_orange
|
|
1459
|
|
1460 " GAS highlighting
|
|
1461 exec 'hi gasSymbol' . s:fg_pink
|
|
1462 exec 'hi gasDirective' . s:fg_blue . s:ft_bold
|
|
1463 exec 'hi gasOpcode_386_Base' . s:fg_navy
|
|
1464 exec 'hi gasDecimalNumber' . s:fg_purple
|
|
1465 exec 'hi gasSymbolRef' . s:fg_pink
|
|
1466 exec 'hi gasRegisterX86' . s:fg_blue
|
|
1467 exec 'hi gasOpcode_P6_Base' . s:fg_navy
|
|
1468 exec 'hi gasDirectiveStore' . s:fg_foreground . s:ft_bold
|
|
1469
|
|
1470 " MIPS highlighting
|
|
1471 exec 'hi mipsInstruction' . s:fg_pink
|
|
1472 exec 'hi mipsRegister' . s:fg_navy
|
|
1473 exec 'hi mipsLabel' . s:fg_aqua . s:ft_bold
|
|
1474 exec 'hi mipsDirective' . s:fg_purple . s:ft_bold
|
|
1475
|
|
1476 " Shell/Bash highlighting
|
|
1477 exec 'hi bashStatement' . s:fg_foreground . s:ft_bold
|
|
1478 exec 'hi shDerefVar' . s:fg_aqua . s:ft_bold
|
|
1479 exec 'hi shDerefSimple' . s:fg_aqua
|
|
1480 exec 'hi shFunction' . s:fg_orange . s:ft_bold
|
|
1481 exec 'hi shStatement' . s:fg_foreground
|
|
1482 exec 'hi shLoop' . s:fg_purple . s:ft_bold
|
|
1483 exec 'hi shQuote' . s:fg_olive
|
|
1484 exec 'hi shCaseEsac' . s:fg_aqua . s:ft_bold
|
|
1485 exec 'hi shSnglCase' . s:fg_purple . s:ft_none
|
|
1486 exec 'hi shFunctionOne' . s:fg_navy
|
|
1487 exec 'hi shCase' . s:fg_navy
|
|
1488 exec 'hi shSetList' . s:fg_navy
|
|
1489 " @see Dockerfile Highlighting section for more sh*
|
|
1490
|
|
1491 " PowerShell Highlighting
|
|
1492 exec 'hi ps1Type' . s:fg_green . s:ft_bold
|
|
1493 exec 'hi ps1Variable' . s:fg_navy
|
|
1494 exec 'hi ps1Boolean' . s:fg_navy . s:ft_bold
|
|
1495 exec 'hi ps1FunctionInvocation' . s:fg_pink
|
|
1496 exec 'hi ps1FunctionDeclaration' . s:fg_pink
|
|
1497 exec 'hi ps1Keyword' . s:fg_blue . s:ft_bold
|
|
1498 exec 'hi ps1Exception' . s:fg_red
|
|
1499 exec 'hi ps1Operator' . s:fg_aqua . s:ft_bold
|
|
1500 exec 'hi ps1CommentDoc' . s:fg_purple
|
|
1501 exec 'hi ps1CDocParam' . s:fg_orange
|
|
1502
|
|
1503 " HTML Highlighting
|
|
1504 exec 'hi htmlTitle' . s:fg_green . s:ft_bold
|
|
1505 exec 'hi htmlH1' . s:fg_green . s:ft_bold
|
|
1506 exec 'hi htmlH2' . s:fg_aqua . s:ft_bold
|
|
1507 exec 'hi htmlH3' . s:fg_purple . s:ft_bold
|
|
1508 exec 'hi htmlH4' . s:fg_orange . s:ft_bold
|
|
1509 exec 'hi htmlTag' . s:fg_comment
|
|
1510 exec 'hi htmlTagName' . s:fg_wine
|
|
1511 exec 'hi htmlArg' . s:fg_pink
|
|
1512 exec 'hi htmlEndTag' . s:fg_comment
|
|
1513 exec 'hi htmlString' . s:fg_blue
|
|
1514 exec 'hi htmlScriptTag' . s:fg_comment
|
|
1515 exec 'hi htmlBold' . s:fg_foreground . s:ft_bold
|
|
1516 exec 'hi htmlItalic' . s:fg_comment . s:ft_italic
|
|
1517 exec 'hi htmlBoldItalic' . s:fg_navy . s:ft_italic_bold
|
|
1518 " exec 'hi htmlLink' . s:fg_blue . s:ft_bold
|
|
1519 exec 'hi htmlTagN' . s:fg_wine . s:ft_bold
|
|
1520 exec 'hi htmlSpecialTagName' . s:fg_wine
|
|
1521 exec 'hi htmlComment' . s:fg_comment . s:ft_italic
|
|
1522 exec 'hi htmlCommentPart' . s:fg_comment . s:ft_italic
|
|
1523
|
|
1524 " CSS Highlighting
|
|
1525 exec 'hi cssIdentifier' . s:fg_pink
|
|
1526 exec 'hi cssPositioningProp' . s:fg_foreground
|
|
1527 exec 'hi cssNoise' . s:fg_foreground
|
|
1528 exec 'hi cssBoxProp' . s:fg_foreground
|
|
1529 exec 'hi cssTableAttr' . s:fg_purple
|
|
1530 exec 'hi cssPositioningAttr' . s:fg_navy
|
|
1531 exec 'hi cssValueLength' . s:fg_orange
|
|
1532 exec 'hi cssFunctionName' . s:fg_blue
|
|
1533 exec 'hi cssUnitDecorators' . s:fg_aqua
|
|
1534 exec 'hi cssColor' . s:fg_blue . s:ft_bold
|
|
1535 exec 'hi cssBraces' . s:fg_pink
|
|
1536 exec 'hi cssBackgroundProp' . s:fg_foreground
|
|
1537 exec 'hi cssTextProp' . s:fg_foreground
|
|
1538 exec 'hi cssDimensionProp' . s:fg_foreground
|
|
1539 exec 'hi cssClassName' . s:fg_pink
|
|
1540
|
|
1541 " Markdown Highlighting
|
|
1542 exec 'hi markdownHeadingRule' . s:fg_pink . s:ft_bold
|
|
1543 exec 'hi markdownH1' . s:fg_pink . s:ft_bold
|
|
1544 exec 'hi markdownH2' . s:fg_orange . s:ft_bold
|
|
1545 exec 'hi markdownBlockquote' . s:fg_pink
|
|
1546 exec 'hi markdownCodeBlock' . s:fg_olive
|
|
1547 exec 'hi markdownCode' . s:fg_olive
|
|
1548 exec 'hi markdownLink' . s:fg_blue . s:ft_bold
|
|
1549 exec 'hi markdownUrl' . s:fg_blue
|
|
1550 exec 'hi markdownLinkText' . s:fg_pink
|
|
1551 exec 'hi markdownLinkTextDelimiter' . s:fg_purple
|
|
1552 exec 'hi markdownLinkDelimiter' . s:fg_purple
|
|
1553 exec 'hi markdownCodeDelimiter' . s:fg_blue
|
|
1554
|
|
1555 exec 'hi mkdCode' . s:fg_olive
|
|
1556 exec 'hi mkdLink' . s:fg_blue . s:ft_bold
|
|
1557 exec 'hi mkdURL' . s:fg_comment
|
|
1558 exec 'hi mkdString' . s:fg_foreground
|
|
1559 exec 'hi mkdBlockQuote' . s:fg_pink
|
|
1560 exec 'hi mkdLinkTitle' . s:fg_pink
|
|
1561 exec 'hi mkdDelimiter' . s:fg_aqua
|
|
1562 exec 'hi mkdRule' . s:fg_pink
|
|
1563
|
|
1564 " reStructuredText Highlighting
|
|
1565 exec 'hi rstSections' . s:fg_pink . s:ft_bold
|
|
1566 exec 'hi rstDelimiter' . s:fg_pink . s:ft_bold
|
|
1567 exec 'hi rstExplicitMarkup' . s:fg_pink . s:ft_bold
|
|
1568 exec 'hi rstDirective' . s:fg_blue
|
|
1569 exec 'hi rstHyperlinkTarget' . s:fg_green
|
|
1570 exec 'hi rstExDirective' . s:fg_foreground
|
|
1571 exec 'hi rstInlineLiteral' . s:fg_olive
|
|
1572 exec 'hi rstInterpretedTextOrHyperlinkReference' . s:fg_blue
|
|
1573
|
|
1574 " Python Highlighting
|
|
1575 exec 'hi pythonImport' . s:fg_pink . s:ft_bold
|
|
1576 exec 'hi pythonExceptions' . s:fg_red
|
|
1577 exec 'hi pythonException' . s:fg_purple . s:ft_bold
|
|
1578 exec 'hi pythonInclude' . s:fg_red
|
|
1579 exec 'hi pythonStatement' . s:fg_pink
|
|
1580 exec 'hi pythonConditional' . s:fg_purple . s:ft_bold
|
|
1581 exec 'hi pythonRepeat' . s:fg_purple . s:ft_bold
|
|
1582 exec 'hi pythonFunction' . s:fg_aqua . s:ft_bold
|
|
1583 exec 'hi pythonPreCondit' . s:fg_purple
|
|
1584 exec 'hi pythonExClass' . s:fg_orange
|
|
1585 exec 'hi pythonOperator' . s:fg_purple . s:ft_bold
|
|
1586 exec 'hi pythonBuiltin' . s:fg_foreground
|
|
1587 exec 'hi pythonDecorator' . s:fg_orange
|
|
1588
|
|
1589 exec 'hi pythonString' . s:fg_olive
|
|
1590 exec 'hi pythonEscape' . s:fg_olive . s:ft_bold
|
|
1591 exec 'hi pythonStrFormatting' . s:fg_olive . s:ft_bold
|
|
1592
|
|
1593 exec 'hi pythonBoolean' . s:fg_green . s:ft_bold
|
|
1594 exec 'hi pythonBytesEscape' . s:fg_olive . s:ft_bold
|
|
1595 exec 'hi pythonDottedName' . s:fg_purple
|
|
1596 exec 'hi pythonStrFormat' . s:fg_foreground
|
|
1597
|
|
1598 if s:langOpt_python__highlight_builtins == 1
|
|
1599 exec 'hi pythonBuiltinFunc' . s:fg_blue
|
|
1600 exec 'hi pythonBuiltinObj' . s:fg_red
|
|
1601 else
|
|
1602 exec 'hi pythonBuiltinFunc' . s:fg_foreground
|
|
1603 exec 'hi pythonBuiltinObj' . s:fg_foreground
|
|
1604 endif
|
|
1605
|
|
1606 " Java Highlighting
|
|
1607 exec 'hi javaExternal' . s:fg_pink
|
|
1608 exec 'hi javaAnnotation' . s:fg_orange
|
|
1609 exec 'hi javaTypedef' . s:fg_aqua
|
|
1610 exec 'hi javaClassDecl' . s:fg_aqua . s:ft_bold
|
|
1611 exec 'hi javaScopeDecl' . s:fg_blue . s:ft_bold
|
|
1612 exec 'hi javaStorageClass' . s:fg_navy . s:ft_bold
|
|
1613 exec 'hi javaBoolean' . s:fg_green . s:ft_bold
|
|
1614 exec 'hi javaConstant' . s:fg_blue
|
|
1615 exec 'hi javaCommentTitle' . s:fg_wine
|
|
1616 exec 'hi javaDocTags' . s:fg_aqua
|
|
1617 exec 'hi javaDocComment' . s:fg_comment
|
|
1618 exec 'hi javaDocParam' . s:fg_foreground
|
|
1619 exec 'hi javaStatement' . s:fg_pink
|
|
1620
|
|
1621 " JavaScript Highlighting
|
|
1622 exec 'hi javaScriptBraces' . s:fg_blue
|
|
1623 exec 'hi javaScriptParens' . s:fg_blue
|
|
1624 exec 'hi javaScriptIdentifier' . s:fg_pink
|
|
1625 exec 'hi javaScriptFunction' . s:fg_blue . s:ft_bold
|
|
1626 exec 'hi javaScriptConditional' . s:fg_purple . s:ft_bold
|
|
1627 exec 'hi javaScriptRepeat' . s:fg_purple . s:ft_bold
|
|
1628 exec 'hi javaScriptBoolean' . s:fg_green . s:ft_bold
|
|
1629 exec 'hi javaScriptNumber' . s:fg_orange
|
|
1630 exec 'hi javaScriptMember' . s:fg_navy
|
|
1631 exec 'hi javaScriptReserved' . s:fg_navy
|
|
1632 exec 'hi javascriptNull' . s:fg_comment . s:ft_bold
|
|
1633 exec 'hi javascriptGlobal' . s:fg_foreground
|
|
1634 exec 'hi javascriptStatement' . s:fg_pink
|
|
1635 exec 'hi javaScriptMessage' . s:fg_foreground
|
|
1636 exec 'hi javaScriptMember' . s:fg_foreground
|
|
1637
|
|
1638 " TypeScript Highlighting
|
|
1639 exec 'hi typescriptDecorators' . s:fg_orange
|
|
1640 exec 'hi typescriptLabel' . s:fg_purple . s:ft_bold
|
|
1641
|
|
1642 " @target https://github.com/pangloss/vim-javascript
|
|
1643 exec 'hi jsImport' . s:fg_pink . s:ft_bold
|
|
1644 exec 'hi jsExport' . s:fg_pink . s:ft_bold
|
|
1645 exec 'hi jsModuleAs' . s:fg_pink . s:ft_bold
|
|
1646 exec 'hi jsFrom' . s:fg_pink . s:ft_bold
|
|
1647 exec 'hi jsExportDefault' . s:fg_pink . s:ft_bold
|
|
1648 exec 'hi jsFuncParens' . s:fg_blue
|
|
1649 exec 'hi jsFuncBraces' . s:fg_blue
|
|
1650 exec 'hi jsParens' . s:fg_blue
|
|
1651 exec 'hi jsBraces' . s:fg_blue
|
|
1652 exec 'hi jsNoise' . s:fg_blue
|
|
1653
|
|
1654 " Jsx Highlighting
|
|
1655 " @target https://github.com/MaxMEllon/vim-jsx-pretty
|
|
1656 exec 'hi jsxTagName' . s:fg_wine
|
|
1657 exec 'hi jsxComponentName' . s:fg_wine
|
|
1658 exec 'hi jsxAttrib' . s:fg_pink
|
|
1659 exec 'hi jsxEqual' . s:fg_comment
|
|
1660 exec 'hi jsxString' . s:fg_blue
|
|
1661 exec 'hi jsxCloseTag' . s:fg_comment
|
|
1662 exec 'hi jsxCloseString' . s:fg_comment
|
|
1663 exec 'hi jsxDot' . s:fg_wine
|
|
1664 exec 'hi jsxNamespace' . s:fg_wine
|
|
1665 exec 'hi jsxPunct' . s:fg_comment
|
|
1666
|
|
1667 " Json Highlighting
|
|
1668 " @target https://github.com/elzr/vim-json
|
|
1669 exec 'hi jsonKeyword' . s:fg_blue
|
|
1670 exec 'hi jsonString' . s:fg_olive
|
|
1671 exec 'hi jsonQuote' . s:fg_comment
|
|
1672 exec 'hi jsonNoise' . s:fg_foreground
|
|
1673 exec 'hi jsonKeywordMatch' . s:fg_foreground
|
|
1674 exec 'hi jsonBraces' . s:fg_foreground
|
|
1675 exec 'hi jsonNumber' . s:fg_orange
|
|
1676 exec 'hi jsonNull' . s:fg_purple . s:ft_bold
|
|
1677 exec 'hi jsonBoolean' . s:fg_green . s:ft_bold
|
|
1678 exec 'hi jsonCommentError' . s:fg_pink . s:bg_background
|
|
1679
|
|
1680 " Go Highlighting
|
|
1681 exec 'hi goDirective' . s:fg_red
|
|
1682 exec 'hi goDeclaration' . s:fg_blue . s:ft_bold
|
|
1683 exec 'hi goStatement' . s:fg_pink
|
|
1684 exec 'hi goConditional' . s:fg_purple . s:ft_bold
|
|
1685 exec 'hi goConstants' . s:fg_orange
|
|
1686 exec 'hi goFunction' . s:fg_orange
|
|
1687 " exec 'hi goTodo' . s:fg_comment . s:ft_bold
|
|
1688 exec 'hi goDeclType' . s:fg_blue
|
|
1689 exec 'hi goBuiltins' . s:fg_purple
|
|
1690
|
|
1691 " Systemtap Highlighting
|
|
1692 " exec 'hi stapBlock' . s:fg_comment . s:ft_none
|
|
1693 exec 'hi stapComment' . s:fg_comment . s:ft_none
|
|
1694 exec 'hi stapProbe' . s:fg_aqua . s:ft_bold
|
|
1695 exec 'hi stapStat' . s:fg_navy . s:ft_bold
|
|
1696 exec 'hi stapFunc' . s:fg_foreground
|
|
1697 exec 'hi stapString' . s:fg_olive
|
|
1698 exec 'hi stapTarget' . s:fg_navy
|
|
1699 exec 'hi stapStatement' . s:fg_pink
|
|
1700 exec 'hi stapType' . s:fg_pink . s:ft_bold
|
|
1701 exec 'hi stapSharpBang' . s:fg_comment
|
|
1702 exec 'hi stapDeclaration' . s:fg_pink
|
|
1703 exec 'hi stapCMacro' . s:fg_blue
|
|
1704
|
|
1705 " DTrace Highlighting
|
|
1706 exec 'hi dtraceProbe' . s:fg_blue
|
|
1707 exec 'hi dtracePredicate' . s:fg_purple . s:ft_bold
|
|
1708 exec 'hi dtraceComment' . s:fg_comment
|
|
1709 exec 'hi dtraceFunction' . s:fg_foreground
|
|
1710 exec 'hi dtraceAggregatingFunction' . s:fg_blue . s:ft_bold
|
|
1711 exec 'hi dtraceStatement' . s:fg_navy . s:ft_bold
|
|
1712 exec 'hi dtraceIdentifier' . s:fg_pink
|
|
1713 exec 'hi dtraceOption' . s:fg_pink
|
|
1714 exec 'hi dtraceConstant' . s:fg_orange
|
|
1715 exec 'hi dtraceType' . s:fg_pink . s:ft_bold
|
|
1716
|
|
1717 " PlantUML Highlighting
|
|
1718 exec 'hi plantumlPreProc' . s:fg_orange . s:ft_bold
|
|
1719 exec 'hi plantumlDirectedOrVerticalArrowRL' . s:fg_pink
|
|
1720 exec 'hi plantumlDirectedOrVerticalArrowLR' . s:fg_pink
|
|
1721 exec 'hi plantumlString' . s:fg_olive
|
|
1722 exec 'hi plantumlActivityThing' . s:fg_purple
|
|
1723 exec 'hi plantumlText' . s:fg_navy
|
|
1724 exec 'hi plantumlClassPublic' . s:fg_olive . s:ft_bold
|
|
1725 exec 'hi plantumlClassPrivate' . s:fg_red
|
|
1726 exec 'hi plantumlColonLine' . s:fg_orange
|
|
1727 exec 'hi plantumlClass' . s:fg_navy
|
|
1728 exec 'hi plantumlHorizontalArrow' . s:fg_pink
|
|
1729 exec 'hi plantumlTypeKeyword' . s:fg_blue . s:ft_bold
|
|
1730 exec 'hi plantumlKeyword' . s:fg_pink . s:ft_bold
|
|
1731
|
|
1732 exec 'hi plantumlType' . s:fg_blue . s:ft_bold
|
|
1733 exec 'hi plantumlBlock' . s:fg_pink . s:ft_bold
|
|
1734 exec 'hi plantumlPreposition' . s:fg_orange
|
|
1735 exec 'hi plantumlLayout' . s:fg_blue . s:ft_bold
|
|
1736 exec 'hi plantumlNote' . s:fg_orange
|
|
1737 exec 'hi plantumlLifecycle' . s:fg_aqua
|
|
1738 exec 'hi plantumlParticipant' . s:fg_foreground . s:ft_bold
|
|
1739
|
|
1740
|
|
1741 " Haskell Highlighting
|
|
1742 exec 'hi haskellType' . s:fg_aqua . s:ft_bold
|
|
1743 exec 'hi haskellIdentifier' . s:fg_orange . s:ft_bold
|
|
1744 exec 'hi haskellOperators' . s:fg_pink
|
|
1745 exec 'hi haskellWhere' . s:fg_foreground . s:ft_bold
|
|
1746 exec 'hi haskellDelimiter' . s:fg_aqua
|
|
1747 exec 'hi haskellImportKeywords' . s:fg_pink
|
|
1748 exec 'hi haskellStatement' . s:fg_purple . s:ft_bold
|
|
1749
|
|
1750
|
|
1751 " SQL/MySQL Highlighting
|
|
1752 exec 'hi sqlStatement' . s:fg_pink . s:ft_bold
|
|
1753 exec 'hi sqlType' . s:fg_blue . s:ft_bold
|
|
1754 exec 'hi sqlKeyword' . s:fg_pink
|
|
1755 exec 'hi sqlOperator' . s:fg_aqua
|
|
1756 exec 'hi sqlSpecial' . s:fg_green . s:ft_bold
|
|
1757
|
|
1758 exec 'hi mysqlVariable' . s:fg_olive . s:ft_bold
|
|
1759 exec 'hi mysqlType' . s:fg_blue . s:ft_bold
|
|
1760 exec 'hi mysqlKeyword' . s:fg_pink
|
|
1761 exec 'hi mysqlOperator' . s:fg_aqua
|
|
1762 exec 'hi mysqlSpecial' . s:fg_green . s:ft_bold
|
|
1763
|
|
1764
|
|
1765 " Octave/MATLAB Highlighting
|
|
1766 exec 'hi octaveVariable' . s:fg_foreground
|
|
1767 exec 'hi octaveDelimiter' . s:fg_pink
|
|
1768 exec 'hi octaveQueryVar' . s:fg_foreground
|
|
1769 exec 'hi octaveSemicolon' . s:fg_purple
|
|
1770 exec 'hi octaveFunction' . s:fg_navy
|
|
1771 exec 'hi octaveSetVar' . s:fg_blue
|
|
1772 exec 'hi octaveUserVar' . s:fg_foreground
|
|
1773 exec 'hi octaveArithmeticOperator' . s:fg_aqua
|
|
1774 exec 'hi octaveBeginKeyword' . s:fg_purple . s:ft_bold
|
|
1775 exec 'hi octaveElseKeyword' . s:fg_purple . s:ft_bold
|
|
1776 exec 'hi octaveEndKeyword' . s:fg_purple . s:ft_bold
|
|
1777 exec 'hi octaveStatement' . s:fg_pink
|
|
1778
|
|
1779 " Ruby Highlighting
|
|
1780 exec 'hi rubyModule' . s:fg_navy . s:ft_bold
|
|
1781 exec 'hi rubyClass' . s:fg_pink . s:ft_bold
|
|
1782 exec 'hi rubyPseudoVariable' . s:fg_comment . s:ft_bold
|
|
1783 exec 'hi rubyKeyword' . s:fg_pink
|
|
1784 exec 'hi rubyInstanceVariable' . s:fg_purple
|
|
1785 exec 'hi rubyFunction' . s:fg_foreground . s:ft_bold
|
|
1786 exec 'hi rubyDefine' . s:fg_pink
|
|
1787 exec 'hi rubySymbol' . s:fg_aqua
|
|
1788 exec 'hi rubyConstant' . s:fg_blue
|
|
1789 exec 'hi rubyAccess' . s:fg_navy
|
|
1790 exec 'hi rubyAttribute' . s:fg_green
|
|
1791 exec 'hi rubyInclude' . s:fg_red
|
|
1792 exec 'hi rubyLocalVariableOrMethod' . s:fg_orange
|
|
1793 exec 'hi rubyCurlyBlock' . s:fg_foreground
|
|
1794 exec 'hi rubyCurlyBlockDelimiter' . s:fg_aqua
|
|
1795 exec 'hi rubyArrayDelimiter' . s:fg_aqua
|
|
1796 exec 'hi rubyStringDelimiter' . s:fg_olive
|
|
1797 exec 'hi rubyInterpolationDelimiter' . s:fg_orange
|
|
1798 exec 'hi rubyConditional' . s:fg_purple . s:ft_bold
|
|
1799 exec 'hi rubyRepeat' . s:fg_purple . s:ft_bold
|
|
1800 exec 'hi rubyControl' . s:fg_purple . s:ft_bold
|
|
1801 exec 'hi rubyException' . s:fg_purple . s:ft_bold
|
|
1802 exec 'hi rubyExceptional' . s:fg_purple . s:ft_bold
|
|
1803 exec 'hi rubyBoolean' . s:fg_green . s:ft_bold
|
|
1804
|
|
1805 " Fortran Highlighting
|
|
1806 exec 'hi fortranUnitHeader' . s:fg_blue . s:ft_bold
|
|
1807 exec 'hi fortranIntrinsic' . s:fg_blue . s:bg_background . s:ft_none
|
|
1808 exec 'hi fortranType' . s:fg_pink . s:ft_bold
|
|
1809 exec 'hi fortranTypeOb' . s:fg_pink . s:ft_bold
|
|
1810 exec 'hi fortranStructure' . s:fg_aqua
|
|
1811 exec 'hi fortranStorageClass' . s:fg_navy . s:ft_bold
|
|
1812 exec 'hi fortranStorageClassR' . s:fg_navy . s:ft_bold
|
|
1813 exec 'hi fortranKeyword' . s:fg_pink
|
|
1814 exec 'hi fortranReadWrite' . s:fg_aqua . s:ft_bold
|
|
1815 exec 'hi fortranIO' . s:fg_navy
|
|
1816 exec 'hi fortranOperator' . s:fg_aqua . s:ft_bold
|
|
1817 exec 'hi fortranCall' . s:fg_aqua . s:ft_bold
|
|
1818 exec 'hi fortranContinueMark' . s:fg_green
|
|
1819
|
|
1820 " ALGOL Highlighting (Plugin: https://github.com/sterpe/vim-algol68)
|
|
1821 exec 'hi algol68Statement' . s:fg_blue . s:ft_bold
|
|
1822 exec 'hi algol68Operator' . s:fg_aqua . s:ft_bold
|
|
1823 exec 'hi algol68PreProc' . s:fg_green
|
|
1824 exec 'hi algol68Function' . s:fg_blue
|
|
1825
|
|
1826 " R Highlighting
|
|
1827 exec 'hi rType' . s:fg_blue
|
|
1828 exec 'hi rArrow' . s:fg_pink
|
|
1829 exec 'hi rDollar' . s:fg_blue
|
|
1830
|
|
1831 " XXD Highlighting
|
|
1832 exec 'hi xxdAddress' . s:fg_navy
|
|
1833 exec 'hi xxdSep' . s:fg_pink
|
|
1834 exec 'hi xxdAscii' . s:fg_pink
|
|
1835 exec 'hi xxdDot' . s:fg_aqua
|
|
1836
|
|
1837 " PHP Highlighting
|
|
1838 exec 'hi phpIdentifier' . s:fg_foreground
|
|
1839 exec 'hi phpVarSelector' . s:fg_pink
|
|
1840 exec 'hi phpKeyword' . s:fg_blue
|
|
1841 exec 'hi phpRepeat' . s:fg_purple . s:ft_bold
|
|
1842 exec 'hi phpConditional' . s:fg_purple . s:ft_bold
|
|
1843 exec 'hi phpStatement' . s:fg_pink
|
|
1844 exec 'hi phpAssignByRef' . s:fg_aqua . s:ft_bold
|
|
1845 exec 'hi phpSpecialFunction' . s:fg_blue
|
|
1846 exec 'hi phpFunctions' . s:fg_blue
|
|
1847 exec 'hi phpComparison' . s:fg_aqua
|
|
1848 exec 'hi phpBackslashSequences' . s:fg_olive . s:ft_bold
|
|
1849 exec 'hi phpMemberSelector' . s:fg_blue
|
|
1850 exec 'hi phpStorageClass' . s:fg_purple . s:ft_bold
|
|
1851 exec 'hi phpDefine' . s:fg_navy
|
|
1852 exec 'hi phpIntVar' . s:fg_navy . s:ft_bold
|
|
1853
|
|
1854 " Perl Highlighting
|
|
1855 exec 'hi perlFiledescRead' . s:fg_green
|
|
1856 exec 'hi perlMatchStartEnd' . s:fg_pink
|
|
1857 exec 'hi perlStatementFlow' . s:fg_pink
|
|
1858 exec 'hi perlStatementStorage' . s:fg_pink
|
|
1859 exec 'hi perlFunction' . s:fg_pink . s:ft_bold
|
|
1860 exec 'hi perlMethod' . s:fg_foreground
|
|
1861 exec 'hi perlStatementFiledesc' . s:fg_orange
|
|
1862 exec 'hi perlVarPlain' . s:fg_navy
|
|
1863 exec 'hi perlSharpBang' . s:fg_comment
|
|
1864 exec 'hi perlStatementInclude' . s:fg_aqua . s:ft_bold
|
|
1865 exec 'hi perlStatementScalar' . s:fg_purple
|
|
1866 exec 'hi perlSubName' . s:fg_aqua . s:ft_bold
|
|
1867 exec 'hi perlSpecialString' . s:fg_olive . s:ft_bold
|
|
1868
|
|
1869 " Pascal Highlighting
|
|
1870 exec 'hi pascalType' . s:fg_pink . s:ft_bold
|
|
1871 exec 'hi pascalStatement' . s:fg_blue . s:ft_bold
|
|
1872 exec 'hi pascalPredefined' . s:fg_pink
|
|
1873 exec 'hi pascalFunction' . s:fg_foreground
|
|
1874 exec 'hi pascalStruct' . s:fg_navy . s:ft_bold
|
|
1875 exec 'hi pascalOperator' . s:fg_aqua . s:ft_bold
|
|
1876 exec 'hi pascalPreProc' . s:fg_green
|
|
1877 exec 'hi pascalAcces' . s:fg_navy . s:ft_bold
|
|
1878
|
|
1879 " Lua Highlighting
|
|
1880 exec 'hi luaFunc' . s:fg_foreground
|
|
1881 exec 'hi luaIn' . s:fg_blue . s:ft_bold
|
|
1882 exec 'hi luaFunction' . s:fg_pink
|
|
1883 exec 'hi luaStatement' . s:fg_blue
|
|
1884 exec 'hi luaRepeat' . s:fg_blue . s:ft_bold
|
|
1885 exec 'hi luaCondStart' . s:fg_purple . s:ft_bold
|
|
1886 exec 'hi luaTable' . s:fg_aqua . s:ft_bold
|
|
1887 exec 'hi luaConstant' . s:fg_green . s:ft_bold
|
|
1888 exec 'hi luaElse' . s:fg_purple . s:ft_bold
|
|
1889 exec 'hi luaCondElseif' . s:fg_purple . s:ft_bold
|
|
1890 exec 'hi luaCond' . s:fg_purple . s:ft_bold
|
|
1891 exec 'hi luaCondEnd' . s:fg_purple
|
|
1892
|
|
1893 " Clojure highlighting:
|
|
1894 exec 'hi clojureConstant' . s:fg_blue
|
|
1895 exec 'hi clojureBoolean' . s:fg_orange
|
|
1896 exec 'hi clojureCharacter' . s:fg_olive
|
|
1897 exec 'hi clojureKeyword' . s:fg_pink
|
|
1898 exec 'hi clojureNumber' . s:fg_orange
|
|
1899 exec 'hi clojureString' . s:fg_olive
|
|
1900 exec 'hi clojureRegexp' . s:fg_purple
|
|
1901 exec 'hi clojureRegexpEscape' . s:fg_pink
|
|
1902 exec 'hi clojureParen' . s:fg_aqua
|
|
1903 exec 'hi clojureVariable' . s:fg_olive
|
|
1904 exec 'hi clojureCond' . s:fg_blue
|
|
1905 exec 'hi clojureDefine' . s:fg_blue . s:ft_bold
|
|
1906 exec 'hi clojureException' . s:fg_red
|
|
1907 exec 'hi clojureFunc' . s:fg_navy
|
|
1908 exec 'hi clojureMacro' . s:fg_blue
|
|
1909 exec 'hi clojureRepeat' . s:fg_blue
|
|
1910 exec 'hi clojureSpecial' . s:fg_blue . s:ft_bold
|
|
1911 exec 'hi clojureQuote' . s:fg_blue
|
|
1912 exec 'hi clojureUnquote' . s:fg_blue
|
|
1913 exec 'hi clojureMeta' . s:fg_blue
|
|
1914 exec 'hi clojureDeref' . s:fg_blue
|
|
1915 exec 'hi clojureAnonArg' . s:fg_blue
|
|
1916 exec 'hi clojureRepeat' . s:fg_blue
|
|
1917 exec 'hi clojureDispatch' . s:fg_aqua
|
|
1918
|
|
1919 " Dockerfile Highlighting
|
|
1920 " @target https://github.com/docker/docker/tree/master/contrib/syntax/vim
|
|
1921 exec 'hi dockerfileKeyword' . s:fg_blue
|
|
1922 exec 'hi shDerefVar' . s:fg_purple . s:ft_bold
|
|
1923 exec 'hi shOperator' . s:fg_aqua
|
|
1924 exec 'hi shOption' . s:fg_navy
|
|
1925 exec 'hi shLine' . s:fg_foreground
|
|
1926 exec 'hi shWrapLineOperator' . s:fg_pink
|
|
1927
|
|
1928 " NGINX Highlighting
|
|
1929 " @target https://github.com/evanmiller/nginx-vim-syntax
|
|
1930 exec 'hi ngxDirectiveBlock' . s:fg_pink . s:ft_bold
|
|
1931 exec 'hi ngxDirective' . s:fg_blue . s:ft_none
|
|
1932 exec 'hi ngxDirectiveImportant' . s:fg_blue . s:ft_bold
|
|
1933 exec 'hi ngxString' . s:fg_olive
|
|
1934 exec 'hi ngxVariableString' . s:fg_purple
|
|
1935 exec 'hi ngxVariable' . s:fg_purple . s:ft_none
|
|
1936
|
|
1937 " Yaml Highlighting
|
|
1938 exec 'hi yamlBlockMappingKey' . s:fg_blue
|
|
1939 exec 'hi yamlKeyValueDelimiter' . s:fg_pink
|
|
1940 exec 'hi yamlBlockCollectionItemStart' . s:fg_pink
|
|
1941
|
|
1942 " Qt QML Highlighting
|
|
1943 exec 'hi qmlObjectLiteralType' . s:fg_pink
|
|
1944 exec 'hi qmlReserved' . s:fg_purple
|
|
1945 exec 'hi qmlBindingProperty' . s:fg_navy
|
|
1946 exec 'hi qmlType' . s:fg_navy
|
|
1947
|
|
1948 " Dosini Highlighting
|
|
1949 exec 'hi dosiniHeader' . s:fg_pink
|
|
1950 exec 'hi dosiniLabel' . s:fg_blue
|
|
1951
|
|
1952 " Mail highlighting
|
|
1953 exec 'hi mailHeaderKey' . s:fg_blue
|
|
1954 exec 'hi mailHeaderEmail' . s:fg_purple
|
|
1955 exec 'hi mailSubject' . s:fg_pink
|
|
1956 exec 'hi mailHeader' . s:fg_comment
|
|
1957 exec 'hi mailURL' . s:fg_aqua
|
|
1958 exec 'hi mailEmail' . s:fg_purple
|
|
1959 exec 'hi mailQuoted1' . s:fg_olive
|
|
1960 exec 'hi mailQuoted2' . s:fg_navy
|
|
1961
|
|
1962 " XML Highlighting
|
|
1963 exec 'hi xmlProcessingDelim' . s:fg_pink
|
|
1964 exec 'hi xmlString' . s:fg_olive
|
|
1965 exec 'hi xmlEqual' . s:fg_orange
|
|
1966 exec 'hi xmlAttrib' . s:fg_navy
|
|
1967 exec 'hi xmlAttribPunct' . s:fg_pink
|
|
1968 exec 'hi xmlTag' . s:fg_blue
|
|
1969 exec 'hi xmlTagName' . s:fg_blue
|
|
1970 exec 'hi xmlEndTag' . s:fg_blue
|
|
1971 exec 'hi xmlNamespace' . s:fg_orange
|
|
1972
|
|
1973 " Exlixir Highlighting
|
|
1974 " @target https://github.com/elixir-lang/vim-elixir
|
|
1975 exec 'hi elixirAlias' . s:fg_blue . s:ft_bold
|
|
1976 exec 'hi elixirAtom' . s:fg_navy
|
|
1977 exec 'hi elixirVariable' . s:fg_navy
|
|
1978 exec 'hi elixirUnusedVariable' . s:fg_foreground . s:ft_bold
|
|
1979 exec 'hi elixirInclude' . s:fg_purple
|
|
1980 exec 'hi elixirStringDelimiter' . s:fg_olive
|
|
1981 exec 'hi elixirKeyword' . s:fg_purple . s:ft_bold
|
|
1982 exec 'hi elixirFunctionDeclaration' . s:fg_aqua . s:ft_bold
|
|
1983 exec 'hi elixirBlockDefinition' . s:fg_pink
|
|
1984 exec 'hi elixirDefine' . s:fg_pink
|
|
1985 exec 'hi elixirStructDefine' . s:fg_pink
|
|
1986 exec 'hi elixirPrivateDefine' . s:fg_pink
|
|
1987 exec 'hi elixirModuleDefine' . s:fg_pink
|
|
1988 exec 'hi elixirProtocolDefine' . s:fg_pink
|
|
1989 exec 'hi elixirImplDefine' . s:fg_pink
|
|
1990 exec 'hi elixirModuleDeclaration' . s:fg_aqua . s:ft_bold
|
|
1991 exec 'hi elixirDocString' . s:fg_olive
|
|
1992 exec 'hi elixirDocTest' . s:fg_green . s:ft_bold
|
|
1993
|
|
1994 " Erlang Highlighting
|
|
1995 exec 'hi erlangBIF' . s:fg_purple . s:ft_bold
|
|
1996 exec 'hi erlangBracket' . s:fg_pink
|
|
1997 exec 'hi erlangLocalFuncCall' . s:fg_foreground
|
|
1998 exec 'hi erlangVariable' . s:fg_foreground
|
|
1999 exec 'hi erlangAtom' . s:fg_navy
|
|
2000 exec 'hi erlangAttribute' . s:fg_blue . s:ft_bold
|
|
2001 exec 'hi erlangRecordDef' . s:fg_blue . s:ft_bold
|
|
2002 exec 'hi erlangRecord' . s:fg_blue
|
|
2003 exec 'hi erlangRightArrow' . s:fg_blue . s:ft_bold
|
|
2004 exec 'hi erlangStringModifier' . s:fg_olive . s:ft_bold
|
|
2005 exec 'hi erlangInclude' . s:fg_blue . s:ft_bold
|
|
2006 exec 'hi erlangKeyword' . s:fg_pink
|
|
2007 exec 'hi erlangGlobalFuncCall' . s:fg_foreground
|
|
2008
|
|
2009 " Cucumber Highlighting
|
|
2010 exec 'hi cucumberFeature' . s:fg_blue . s:ft_bold
|
|
2011 exec 'hi cucumberBackground' . s:fg_pink . s:ft_bold
|
|
2012 exec 'hi cucumberScenario' . s:fg_pink . s:ft_bold
|
|
2013 exec 'hi cucumberGiven' . s:fg_orange
|
|
2014 exec 'hi cucumberGivenAnd' . s:fg_blue
|
|
2015 exec 'hi cucumberThen' . s:fg_orange
|
|
2016 exec 'hi cucumberThenAnd' . s:fg_blue
|
|
2017 exec 'hi cucumberWhen' . s:fg_purple . s:ft_bold
|
|
2018 exec 'hi cucumberScenarioOutline' . s:fg_pink . s:ft_bold
|
|
2019 exec 'hi cucumberExamples' . s:fg_aqua
|
|
2020 exec 'hi cucumberTags' . s:fg_aqua
|
|
2021 exec 'hi cucumberPlaceholder' . s:fg_aqua
|
|
2022
|
|
2023 " Ada Highlighting
|
|
2024 exec 'hi adaInc' . s:fg_aqua . s:ft_bold
|
|
2025 exec 'hi adaSpecial' . s:fg_aqua . s:ft_bold
|
|
2026 exec 'hi adaKeyword' . s:fg_pink
|
|
2027 exec 'hi adaBegin' . s:fg_pink
|
|
2028 exec 'hi adaEnd' . s:fg_pink
|
|
2029 exec 'hi adaTypedef' . s:fg_navy . s:ft_bold
|
|
2030 exec 'hi adaAssignment' . s:fg_aqua . s:ft_bold
|
|
2031 exec 'hi adaAttribute' . s:fg_green
|
|
2032
|
|
2033 " COBOL Highlighting
|
|
2034 exec 'hi cobolMarker' . s:fg_comment . s:bg_cursorline
|
|
2035 exec 'hi cobolLine' . s:fg_foreground
|
|
2036 exec 'hi cobolReserved' . s:fg_blue
|
|
2037 exec 'hi cobolDivision' . s:fg_pink . s:ft_bold
|
|
2038 exec 'hi cobolDivisionName' . s:fg_pink . s:ft_bold
|
|
2039 exec 'hi cobolSection' . s:fg_navy . s:ft_bold
|
|
2040 exec 'hi cobolSectionName' . s:fg_navy . s:ft_bold
|
|
2041 exec 'hi cobolParagraph' . s:fg_purple
|
|
2042 exec 'hi cobolParagraphName' . s:fg_purple
|
|
2043 exec 'hi cobolDeclA' . s:fg_purple
|
|
2044 exec 'hi cobolDecl' . s:fg_green
|
|
2045 exec 'hi cobolCALLs' . s:fg_aqua . s:ft_bold
|
|
2046 exec 'hi cobolEXECs' . s:fg_aqua . s:ft_bold
|
|
2047
|
|
2048 " GNU sed highlighting
|
|
2049 exec 'hi sedST' . s:fg_purple . s:ft_bold
|
|
2050 exec 'hi sedFlag' . s:fg_purple . s:ft_bold
|
|
2051 exec 'hi sedRegexp47' . s:fg_pink
|
|
2052 exec 'hi sedRegexpMeta' . s:fg_blue . s:ft_bold
|
|
2053 exec 'hi sedReplacement47' . s:fg_olive
|
|
2054 exec 'hi sedReplaceMeta' . s:fg_orange . s:ft_bold
|
|
2055 exec 'hi sedAddress' . s:fg_pink
|
|
2056 exec 'hi sedFunction' . s:fg_aqua . s:ft_bold
|
|
2057 exec 'hi sedBranch' . s:fg_green . s:ft_bold
|
|
2058 exec 'hi sedLabel' . s:fg_green . s:ft_bold
|
|
2059
|
|
2060 " GNU awk highlighting
|
|
2061 exec 'hi awkPatterns' . s:fg_pink . s:ft_bold
|
|
2062 exec 'hi awkSearch' . s:fg_pink
|
|
2063 exec 'hi awkRegExp' . s:fg_blue . s:ft_bold
|
|
2064 exec 'hi awkCharClass' . s:fg_blue . s:ft_bold
|
|
2065 exec 'hi awkFieldVars' . s:fg_green . s:ft_bold
|
|
2066 exec 'hi awkStatement' . s:fg_blue . s:ft_bold
|
|
2067 exec 'hi awkFunction' . s:fg_blue
|
|
2068 exec 'hi awkVariables' . s:fg_green . s:ft_bold
|
|
2069 exec 'hi awkArrayElement' . s:fg_orange
|
|
2070 exec 'hi awkOperator' . s:fg_foreground
|
|
2071 exec 'hi awkBoolLogic' . s:fg_foreground
|
|
2072 exec 'hi awkExpression' . s:fg_foreground
|
|
2073 exec 'hi awkSpecialPrintf' . s:fg_olive . s:ft_bold
|
|
2074
|
|
2075 " Elm highlighting
|
|
2076 exec 'hi elmImport' . s:fg_navy
|
|
2077 exec 'hi elmAlias' . s:fg_aqua
|
|
2078 exec 'hi elmType' . s:fg_pink
|
|
2079 exec 'hi elmOperator' . s:fg_aqua . s:ft_bold
|
|
2080 exec 'hi elmBraces' . s:fg_aqua . s:ft_bold
|
|
2081 exec 'hi elmTypedef' . s:fg_blue . s:ft_bold
|
|
2082 exec 'hi elmTopLevelDecl' . s:fg_green . s:ft_bold
|
|
2083
|
|
2084 " Purescript highlighting
|
|
2085 exec 'hi purescriptModuleKeyword' . s:fg_navy
|
|
2086 exec 'hi purescriptImportKeyword' . s:fg_navy
|
|
2087 exec 'hi purescriptModuleName' . s:fg_pink
|
|
2088 exec 'hi purescriptOperator' . s:fg_aqua . s:ft_bold
|
|
2089 exec 'hi purescriptType' . s:fg_pink
|
|
2090 exec 'hi purescriptTypeVar' . s:fg_navy
|
|
2091 exec 'hi purescriptStructure' . s:fg_blue . s:ft_bold
|
|
2092 exec 'hi purescriptLet' . s:fg_blue . s:ft_bold
|
|
2093 exec 'hi purescriptFunction' . s:fg_green . s:ft_bold
|
|
2094 exec 'hi purescriptDelimiter' . s:fg_aqua . s:ft_bold
|
|
2095 exec 'hi purescriptStatement' . s:fg_purple . s:ft_bold
|
|
2096 exec 'hi purescriptConstructor' . s:fg_pink
|
|
2097 exec 'hi purescriptWhere' . s:fg_purple . s:ft_bold
|
|
2098
|
|
2099 " F# highlighting
|
|
2100 exec 'hi fsharpTypeName' . s:fg_pink
|
|
2101 exec 'hi fsharpCoreClass' . s:fg_pink
|
|
2102 exec 'hi fsharpType' . s:fg_pink
|
|
2103 exec 'hi fsharpKeyword' . s:fg_blue . s:ft_bold
|
|
2104 exec 'hi fsharpOperator' . s:fg_aqua . s:ft_bold
|
|
2105 exec 'hi fsharpBoolean' . s:fg_green . s:ft_bold
|
|
2106 exec 'hi fsharpFormat' . s:fg_foreground
|
|
2107 exec 'hi fsharpLinq' . s:fg_blue
|
|
2108 exec 'hi fsharpKeyChar' . s:fg_aqua . s:ft_bold
|
|
2109 exec 'hi fsharpOption' . s:fg_orange
|
|
2110 exec 'hi fsharpCoreMethod' . s:fg_purple
|
|
2111 exec 'hi fsharpAttrib' . s:fg_orange
|
|
2112 exec 'hi fsharpModifier' . s:fg_aqua
|
|
2113 exec 'hi fsharpOpen' . s:fg_red
|
|
2114
|
|
2115 " ASN.1 highlighting
|
|
2116 exec 'hi asnExternal' . s:fg_green . s:ft_bold
|
|
2117 exec 'hi asnTagModifier' . s:fg_purple
|
|
2118 exec 'hi asnBraces' . s:fg_aqua . s:ft_bold
|
|
2119 exec 'hi asnDefinition' . s:fg_foreground
|
|
2120 exec 'hi asnStructure' . s:fg_blue
|
|
2121 exec 'hi asnType' . s:fg_pink
|
|
2122 exec 'hi asnTypeInfo' . s:fg_aqua . s:ft_bold
|
|
2123 exec 'hi asnFieldOption' . s:fg_purple
|
|
2124
|
|
2125 " }}}
|
|
2126
|
|
2127 " Plugin: Netrw
|
|
2128 exec 'hi netrwVersion' . s:fg_red
|
|
2129 exec 'hi netrwList' . s:fg_pink
|
|
2130 exec 'hi netrwHidePat' . s:fg_olive
|
|
2131 exec 'hi netrwQuickHelp' . s:fg_blue
|
|
2132 exec 'hi netrwHelpCmd' . s:fg_blue
|
|
2133 exec 'hi netrwDir' . s:fg_aqua . s:ft_bold
|
|
2134 exec 'hi netrwClassify' . s:fg_pink
|
|
2135 exec 'hi netrwExe' . s:fg_green
|
|
2136 exec 'hi netrwSuffixes' . s:fg_comment
|
|
2137 exec 'hi netrwTreeBar' . s:fg_linenumber_fg
|
|
2138
|
|
2139 " Plugin: NERDTree
|
|
2140 exec 'hi NERDTreeUp' . s:fg_comment
|
|
2141 exec 'hi NERDTreeHelpCommand' . s:fg_pink
|
|
2142 exec 'hi NERDTreeHelpTitle' . s:fg_blue . s:ft_bold
|
|
2143 exec 'hi NERDTreeHelpKey' . s:fg_pink
|
|
2144 exec 'hi NERDTreeHelp' . s:fg_foreground
|
|
2145 exec 'hi NERDTreeToggleOff' . s:fg_red
|
|
2146 exec 'hi NERDTreeToggleOn' . s:fg_green
|
|
2147 exec 'hi NERDTreeDir' . s:fg_blue . s:ft_bold
|
|
2148 exec 'hi NERDTreeDirSlash' . s:fg_pink
|
|
2149 exec 'hi NERDTreeFile' . s:fg_foreground
|
|
2150 exec 'hi NERDTreeExecFile' . s:fg_green
|
|
2151 exec 'hi NERDTreeOpenable' . s:fg_aqua . s:ft_bold
|
|
2152 exec 'hi NERDTreeClosable' . s:fg_pink
|
|
2153
|
|
2154 " Plugin: Tagbar
|
|
2155 exec 'hi TagbarHelpTitle' . s:fg_blue . s:ft_bold
|
|
2156 exec 'hi TagbarHelp' . s:fg_foreground
|
|
2157 exec 'hi TagbarKind' . s:fg_pink
|
|
2158 exec 'hi TagbarSignature' . s:fg_aqua
|
|
2159
|
|
2160 " Plugin: Vimdiff
|
|
2161 exec 'hi DiffAdd' . s:fg_diffadd_fg . s:bg_diffadd_bg . s:ft_none
|
|
2162 exec 'hi DiffChange' . s:fg_diffchange_fg . s:bg_diffchange_bg . s:ft_none
|
|
2163 exec 'hi DiffDelete' . s:fg_diffdelete_fg . s:bg_diffdelete_bg . s:ft_none
|
|
2164 exec 'hi DiffText' . s:fg_difftext_fg . s:bg_difftext_bg . s:ft_none
|
|
2165
|
|
2166 " Plugin: AGit
|
|
2167 exec 'hi agitHead' . s:fg_green . s:ft_bold
|
|
2168 exec 'hi agitHeader' . s:fg_olive
|
|
2169 exec 'hi agitStatAdded' . s:fg_diffadd_fg
|
|
2170 exec 'hi agitStatRemoved' . s:fg_diffdelete_fg
|
|
2171 exec 'hi agitDiffAdd' . s:fg_diffadd_fg
|
|
2172 exec 'hi agitDiffRemove' . s:fg_diffdelete_fg
|
|
2173 exec 'hi agitDiffHeader' . s:fg_pink
|
|
2174 exec 'hi agitDiff' . s:fg_foreground
|
|
2175 exec 'hi agitDiffIndex' . s:fg_purple
|
|
2176 exec 'hi agitDiffFileName' . s:fg_aqua
|
|
2177 exec 'hi agitLog' . s:fg_foreground
|
|
2178 exec 'hi agitAuthorMark' . s:fg_olive
|
|
2179 exec 'hi agitDateMark' . s:fg_comment
|
|
2180 exec 'hi agitHeaderLabel' . s:fg_aqua
|
|
2181 exec 'hi agitDate' . s:fg_aqua
|
|
2182 exec 'hi agitTree' . s:fg_pink
|
|
2183 exec 'hi agitRef' . s:fg_blue . s:ft_bold
|
|
2184 exec 'hi agitRemote' . s:fg_purple . s:ft_bold
|
|
2185 exec 'hi agitTag' . s:fg_orange . s:ft_bold
|
|
2186
|
|
2187 " Plugin: Spell Checking
|
|
2188 exec 'hi SpellBad' . s:fg_foreground . s:bg_spellbad
|
|
2189 exec 'hi SpellCap' . s:fg_foreground . s:bg_spellcap
|
|
2190 exec 'hi SpellRare' . s:fg_foreground . s:bg_spellrare
|
|
2191 exec 'hi SpellLocal' . s:fg_foreground . s:bg_spelllocal
|
|
2192
|
|
2193 " Plugin: Indent Guides
|
|
2194 exec 'hi IndentGuidesOdd' . s:bg_background
|
|
2195 exec 'hi IndentGuidesEven' . s:bg_cursorline
|
|
2196
|
|
2197 " Plugin: Startify
|
|
2198 exec 'hi StartifyFile' . s:fg_blue . s:ft_bold
|
|
2199 exec 'hi StartifyNumber' . s:fg_orange
|
|
2200 exec 'hi StartifyHeader' . s:fg_comment
|
|
2201 exec 'hi StartifySection' . s:fg_pink
|
|
2202 exec 'hi StartifyPath' . s:fg_foreground
|
|
2203 exec 'hi StartifySlash' . s:fg_navy
|
|
2204 exec 'hi StartifyBracket' . s:fg_aqua
|
|
2205 exec 'hi StartifySpecial' . s:fg_aqua
|
|
2206
|
|
2207 " Plugin: Signify
|
|
2208 exec 'hi SignifyLineChange' . s:fg_diffchange_fg
|
|
2209 exec 'hi SignifySignChange' . s:fg_diffchange_fg
|
|
2210 exec 'hi SignifyLineAdd' . s:fg_diffadd_fg
|
|
2211 exec 'hi SignifySignAdd' . s:fg_diffadd_fg
|
|
2212 exec 'hi SignifyLineDelete' . s:fg_diffdelete_fg
|
|
2213 exec 'hi SignifySignDelete' . s:fg_diffdelete_fg
|
|
2214
|
|
2215 " Git commit message
|
|
2216 exec 'hi gitcommitSummary' . s:fg_blue
|
|
2217 exec 'hi gitcommitHeader' . s:fg_green . s:ft_bold
|
|
2218 exec 'hi gitcommitSelectedType' . s:fg_blue
|
|
2219 exec 'hi gitcommitSelectedFile' . s:fg_pink
|
|
2220 exec 'hi gitcommitUntrackedFile' . s:fg_diffdelete_fg
|
|
2221 exec 'hi gitcommitBranch' . s:fg_aqua . s:ft_bold
|
|
2222 exec 'hi gitcommitDiscardedType' . s:fg_diffdelete_fg
|
|
2223 exec 'hi gitcommitDiff' . s:fg_comment
|
|
2224
|
|
2225 exec 'hi diffFile' . s:fg_blue
|
|
2226 exec 'hi diffSubname' . s:fg_comment
|
|
2227 exec 'hi diffIndexLine' . s:fg_comment
|
|
2228 exec 'hi diffAdded' . s:fg_diffadd_fg
|
|
2229 exec 'hi diffRemoved' . s:fg_diffdelete_fg
|
|
2230 exec 'hi diffLine' . s:fg_orange
|
|
2231 exec 'hi diffBDiffer' . s:fg_orange
|
|
2232 exec 'hi diffNewFile' . s:fg_comment
|
|
2233
|
|
2234 " Pluging: CoC
|
|
2235 exec 'hi CocFloating' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
2236 exec 'hi CocErrorFloat' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
2237 exec 'hi CocWarningFloat' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
2238 exec 'hi CocInfoFloat' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
2239 exec 'hi CocHintFloat' . s:fg_popupmenu_fg . s:bg_popupmenu_bg . s:ft_none
|
|
2240
|
|
2241 exec 'hi CocErrorHighlight' . s:fg_foreground . s:bg_spellbad
|
|
2242 exec 'hi CocWarningHighlight' . s:fg_foreground . s:bg_spellcap
|
|
2243 exec 'hi CocInfoHighlight' . s:fg_foreground . s:bg_spellcap
|
|
2244 exec 'hi CocHintHighlight' . s:fg_foreground . s:bg_spellcap
|
|
2245
|
|
2246 exec 'hi CocErrorSign' . s:fg_error_fg . s:bg_error_bg
|
|
2247 exec 'hi CocWarningSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
2248 exec 'hi CocInfoSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
2249 exec 'hi CocHintSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
|
|
2250
|
673
|
2251 " Debug Adapter Protocol (DAP) - Plugin: rcarriga/nvim-dap-ui
|
|
2252 if has('nvim')
|
|
2253 exec 'hi DapUIDecoration' . s:fg_blue
|
|
2254 " DAP Scopes window
|
|
2255 hi! link DapUIType Type
|
|
2256 hi! link DapUIVariable Identifier
|
|
2257 exec 'hi DapUIScope' . s:fg_red . s:ft_bold
|
|
2258 hi! link DapUIValue Number
|
|
2259 exec 'hi DapUIModifiedValue' . s:fg_orange . s:ft_bold . s:bg_error_bg
|
|
2260 " DAP Breakpoints window
|
|
2261 hi! link DapUILineNumber LineNr
|
|
2262 hi! link DapUIBreakpointsDisabledLine LineNr
|
|
2263 exec 'hi DapUIBreakpointsCurrentLine' . s:fg_linenumber_fg . s:ft_bold . s:bg_error_bg
|
|
2264 exec 'hi DapUIBreakpointsInfo' . s:fg_green
|
|
2265 exec 'hi DapUIBreakpointsPath' . s:fg_olive . s:ft_bold
|
|
2266 " DAP Stacks window
|
|
2267 exec 'hi DapUIFrameName' . s:fg_blue
|
|
2268 exec 'hi DapUIThread' . s:fg_pink . s:ft_bold
|
|
2269 exec 'hi DapUIStoppedThread' . s:fg_pink
|
|
2270 " DAP Watches window
|
|
2271 exec 'hi DapUIWatchesEmpty' . s:fg_pink . s:ft_bold
|
|
2272 hi! link DapUIWatchesError DapUIWatchesEmpty
|
|
2273 hi! link DapUIWatchesValue Number
|
|
2274 " DAP Breakpoints window
|
|
2275 exec 'hi DapUISource' . s:fg_olive
|
|
2276 " DAP Floating window
|
|
2277 exec 'hi DapUIFloatBorder' . s:fg_blue
|
|
2278 endif
|
|
2279
|
|
2280 " Plugin: hrsh7th/nvim-cmp
|
|
2281 if has('nvim')
|
|
2282 hi! link CmpItemKindValue Number
|
|
2283 hi! link CmpItemKindVariable Identifier
|
|
2284 hi! link CmpItemKindKeyword Keyword
|
|
2285 hi! link CmpItemKindField CmpItemKindVariable
|
|
2286 exec 'hi CmpItemKindFunction' . s:fg_blue
|
|
2287 hi! link CmpItemKindMethod CmpItemKindFunction
|
|
2288 hi! link CmpItemKindConstructor CmpItemKindFunction
|
|
2289 hi! link CmpItemKindClass Structure
|
|
2290 hi! link CmpItemKindInterface Structure
|
|
2291 exec 'hi CmpItemKindSnippet' . s:fg_orange
|
|
2292 exec 'hi CmpItemKindFile' . s:fg_orange
|
|
2293 hi! link CmpItemKindFolder CmpItemKindFile
|
|
2294 exec 'hi CmpItemAbbrMatch' . s:fg_blue . s:ft_bold
|
|
2295 exec 'hi CmpItemAbbrMatchFuzzy' . s:fg_blue . s:ft_bold
|
|
2296 exec 'hi CmpItemAbbrDeprecated' . s:fg_foreground . ' gui=strikethrough'
|
|
2297 endif
|
|
2298
|
662
|
2299 endfun
|
|
2300 " }}}
|
|
2301
|
|
2302 " ================================== MISC =====================================
|
|
2303 " Command to show theme information {{{
|
|
2304 fun! g:PaperColor()
|
|
2305 echom 'PaperColor Theme Framework'
|
|
2306 echom ' version ' . s:version
|
|
2307 echom ' by Nikyle Nguyen et al.'
|
|
2308 echom ' at https://github.com/NLKNguyen/papercolor-theme/'
|
|
2309 echom ' '
|
|
2310 echom 'Current theme: ' . s:theme_name
|
|
2311 echom ' ' . s:selected_theme['description']
|
|
2312 echom ' by ' . s:selected_theme['maintainer']
|
|
2313 echom ' at ' . s:selected_theme['source']
|
|
2314
|
|
2315 " TODO: add diff display for theme color names between 'default' and current
|
|
2316 " theme if it is a custom theme, i.e. child theme.
|
|
2317 endfun
|
|
2318
|
|
2319 " @brief command alias for g:PaperColor()
|
|
2320 command! -nargs=0 PaperColor :call g:PaperColor()
|
|
2321 " }}}
|
|
2322
|
|
2323 " =============================== MAIN ========================================
|
|
2324
|
|
2325 hi clear
|
|
2326 syntax reset
|
|
2327 let g:colors_name = "PaperColor"
|
|
2328
|
|
2329 call s:acquire_theme_data()
|
|
2330 call s:identify_color_mode()
|
|
2331
|
|
2332 call s:generate_theme_option_variables()
|
|
2333 call s:generate_language_option_variables()
|
|
2334
|
|
2335 call s:set_format_attributes()
|
|
2336 call s:set_overriding_colors()
|
|
2337
|
|
2338 call s:convert_colors()
|
|
2339 call s:set_color_variables()
|
|
2340
|
|
2341 call s:apply_syntax_highlightings()
|
|
2342
|
|
2343 " =============================================================================
|
|
2344 " Cheers!
|
|
2345 " vim: fdm=marker ff=unix
|