662
|
1 " Vim Code Dark (color scheme)
|
|
2 " https://github.com/tomasiser/vim-code-dark
|
|
3
|
|
4 scriptencoding utf-8
|
|
5
|
|
6 set background=dark
|
|
7 hi clear
|
|
8 if exists("syntax_on")
|
|
9 syntax reset
|
|
10 endif
|
|
11 let g:colors_name="codedark"
|
|
12
|
|
13 " Highlighting function (inspiration from https://github.com/chriskempson/base16-vim)
|
|
14 if &t_Co >= 256
|
|
15 let g:codedark_term256=1
|
|
16 elseif !exists("g:codedark_term256")
|
|
17 let g:codedark_term256=0
|
|
18 endif
|
|
19 fun! <sid>hi(group, fg, bg, attr, sp)
|
|
20 if !empty(a:fg)
|
|
21 exec "hi " . a:group . " guifg=" . a:fg.gui . " ctermfg=" . (g:codedark_term256 ? a:fg.cterm256 : a:fg.cterm)
|
|
22 endif
|
|
23 if !empty(a:bg)
|
|
24 exec "hi " . a:group . " guibg=" . a:bg.gui . " ctermbg=" . (g:codedark_term256 ? a:bg.cterm256 : a:bg.cterm)
|
|
25 endif
|
|
26 if a:attr != ""
|
|
27 exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr
|
|
28 endif
|
|
29 if !empty(a:sp)
|
|
30 exec "hi " . a:group . " guisp=" . a:sp.gui
|
|
31 endif
|
|
32 endfun
|
|
33
|
|
34 " ------------------
|
|
35 " Color definitions:
|
|
36 " ------------------
|
|
37
|
|
38 " Terminal colors (base16):
|
|
39 let s:cterm00 = "00"
|
|
40 let s:cterm03 = "08"
|
|
41 let s:cterm05 = "07"
|
|
42 let s:cterm07 = "15"
|
|
43 let s:cterm08 = "01"
|
|
44 let s:cterm0A = "03"
|
|
45 let s:cterm0B = "02"
|
|
46 let s:cterm0C = "06"
|
|
47 let s:cterm0D = "04"
|
|
48 let s:cterm0E = "05"
|
|
49 if exists('base16colorspace') && base16colorspace == "256"
|
|
50 let s:cterm01 = "18"
|
|
51 let s:cterm02 = "19"
|
|
52 let s:cterm04 = "20"
|
|
53 let s:cterm06 = "21"
|
|
54 let s:cterm09 = "16"
|
|
55 let s:cterm0F = "17"
|
|
56 else
|
|
57 let s:cterm01 = "00"
|
|
58 let s:cterm02 = "08"
|
|
59 let s:cterm04 = "07"
|
|
60 let s:cterm06 = "07"
|
|
61 let s:cterm09 = "06"
|
|
62 let s:cterm0F = "03"
|
|
63 endif
|
|
64
|
|
65 " General appearance colors:
|
|
66 " (some of them may be unused)
|
|
67
|
|
68 let s:cdNone = {'gui': 'NONE', 'cterm': 'NONE', 'cterm256': 'NONE'}
|
|
69 let s:cdFront = {'gui': '#D4D4D4', 'cterm': s:cterm05, 'cterm256': '188'}
|
|
70 let s:cdBack = {'gui': '#1E1E1E', 'cterm': s:cterm00, 'cterm256': '234'}
|
|
71
|
|
72 let s:cdTabCurrent = {'gui': '#1E1E1E', 'cterm': s:cterm00, 'cterm256': '234'}
|
|
73 let s:cdTabOther = {'gui': '#2D2D2D', 'cterm': s:cterm01, 'cterm256': '236'}
|
|
74 let s:cdTabOutside = {'gui': '#252526', 'cterm': s:cterm01, 'cterm256': '235'}
|
|
75
|
|
76 let s:cdLeftDark = {'gui': '#252526', 'cterm': s:cterm01, 'cterm256': '235'}
|
|
77 let s:cdLeftMid = {'gui': '#373737', 'cterm': s:cterm03, 'cterm256': '237'}
|
|
78 let s:cdLeftLight = {'gui': '#3F3F46', 'cterm': s:cterm03, 'cterm256': '238'}
|
|
79
|
|
80 let s:cdPopupFront = {'gui': '#BBBBBB', 'cterm': s:cterm06, 'cterm256': '250'}
|
|
81 let s:cdPopupBack = {'gui': '#2D2D30', 'cterm': s:cterm01, 'cterm256': '236'}
|
|
82 let s:cdPopupHighlightBlue = {'gui': '#073655', 'cterm': s:cterm0D, 'cterm256': '24'}
|
|
83 let s:cdPopupHighlightGray = {'gui': '#3D3D40', 'cterm': s:cterm03, 'cterm256': '237'}
|
|
84
|
|
85 let s:cdSplitLight = {'gui': '#898989', 'cterm': s:cterm04, 'cterm256': '245'}
|
|
86 let s:cdSplitDark = {'gui': '#444444', 'cterm': s:cterm03, 'cterm256': '238'}
|
|
87 let s:cdSplitThumb = {'gui': '#424242', 'cterm': s:cterm04, 'cterm256': '238'}
|
|
88
|
|
89 let s:cdCursorDarkDark = {'gui': '#222222', 'cterm': s:cterm01, 'cterm256': '235'}
|
|
90 let s:cdCursorDark = {'gui': '#51504F', 'cterm': s:cterm03, 'cterm256': '239'}
|
|
91 let s:cdCursorLight = {'gui': '#AEAFAD', 'cterm': s:cterm04, 'cterm256': '145'}
|
|
92 let s:cdSelection = {'gui': '#264F78', 'cterm': s:cterm03, 'cterm256': '24'}
|
|
93 let s:cdLineNumber = {'gui': '#5A5A5A', 'cterm': s:cterm04, 'cterm256': '240'}
|
|
94
|
|
95 let s:cdDiffRedDark = {'gui': '#4B1818', 'cterm': s:cterm08, 'cterm256': '52'}
|
|
96 let s:cdDiffRedLight = {'gui': '#6F1313', 'cterm': s:cterm08, 'cterm256': '52'}
|
|
97 let s:cdDiffRedLightLight = {'gui': '#FB0101', 'cterm': s:cterm08, 'cterm256': '09'}
|
|
98 let s:cdDiffGreenDark = {'gui': '#373D29', 'cterm': s:cterm0B, 'cterm256': '237'}
|
|
99 let s:cdDiffGreenLight = {'gui': '#4B5632', 'cterm': s:cterm09, 'cterm256': '58'}
|
|
100
|
|
101 let s:cdSearchCurrent = {'gui': '#4B5632', 'cterm': s:cterm09, 'cterm256': '58'}
|
|
102 let s:cdSearch = {'gui': '#264F78', 'cterm': s:cterm03, 'cterm256': '24'}
|
|
103
|
|
104 " Syntax colors:
|
|
105
|
|
106 if !exists("g:codedark_conservative")
|
|
107 let g:codedark_conservative=0
|
|
108 endif
|
|
109
|
673
|
110 " Italicized comments
|
|
111 if !exists("g:codedark_italics")
|
|
112 let g:codedark_italics=0
|
|
113 endif
|
|
114
|
662
|
115 let s:cdGray = {'gui': '#808080', 'cterm': s:cterm04, 'cterm256': '08'}
|
|
116 let s:cdViolet = {'gui': '#646695', 'cterm': s:cterm04, 'cterm256': '60'}
|
|
117 let s:cdBlue = {'gui': '#569CD6', 'cterm': s:cterm0D, 'cterm256': '75'}
|
|
118 let s:cdDarkBlue = {'gui': '#223E55', 'cterm': s:cterm0D, 'cterm256': '73'}
|
|
119 let s:cdLightBlue = {'gui': '#9CDCFE', 'cterm': s:cterm0C, 'cterm256': '117'}
|
|
120 if g:codedark_conservative | let s:cdLightBlue = s:cdFront | endif
|
|
121 let s:cdGreen = {'gui': '#6A9955', 'cterm': s:cterm0B, 'cterm256': '65'}
|
|
122 let s:cdBlueGreen = {'gui': '#4EC9B0', 'cterm': s:cterm0F, 'cterm256': '43'}
|
|
123 let s:cdLightGreen = {'gui': '#B5CEA8', 'cterm': s:cterm09, 'cterm256': '151'}
|
|
124 let s:cdRed = {'gui': '#F44747', 'cterm': s:cterm08, 'cterm256': '203'}
|
|
125 let s:cdOrange = {'gui': '#CE9178', 'cterm': s:cterm0F, 'cterm256': '173'}
|
|
126 let s:cdLightRed = {'gui': '#D16969', 'cterm': s:cterm08, 'cterm256': '167'}
|
|
127 if g:codedark_conservative | let s:cdLightRed = s:cdOrange | endif
|
|
128 let s:cdYellowOrange = {'gui': '#D7BA7D', 'cterm': s:cterm0A, 'cterm256': '179'}
|
|
129 let s:cdYellow = {'gui': '#DCDCAA', 'cterm': s:cterm0A, 'cterm256': '187'}
|
|
130 if g:codedark_conservative | let s:cdYellow = s:cdFront | endif
|
|
131 let s:cdPink = {'gui': '#C586C0', 'cterm': s:cterm0E, 'cterm256': '176'}
|
|
132 if g:codedark_conservative | let s:cdPink = s:cdBlue | endif
|
673
|
133 let s:cdSilver = {'gui': '#C0C0C0', 'cterm': s:cterm05, 'cterm256': '7'}
|
662
|
134
|
|
135 " Vim editor colors
|
|
136 " <sid>hi(GROUP, FOREGROUND, BACKGROUND, ATTRIBUTE, SPECIAL)
|
|
137 call <sid>hi('Normal', s:cdFront, s:cdBack, 'none', {})
|
|
138 call <sid>hi('ColorColumn', {}, s:cdCursorDarkDark, 'none', {})
|
|
139 call <sid>hi('Cursor', s:cdCursorDark, s:cdCursorLight, 'none', {})
|
|
140 call <sid>hi('CursorLine', {}, s:cdCursorDarkDark, 'none', {})
|
|
141 call <sid>hi('CursorColumn', {}, s:cdCursorDarkDark, 'none', {})
|
|
142 call <sid>hi('Directory', s:cdBlue, s:cdBack, 'none', {})
|
|
143 call <sid>hi('DiffAdd', {}, s:cdDiffGreenLight, 'none', {})
|
|
144 call <sid>hi('DiffChange', {}, s:cdDiffRedDark, 'none', {})
|
|
145 call <sid>hi('DiffDelete', {}, s:cdDiffRedLight, 'none', {})
|
|
146 call <sid>hi('DiffText', {}, s:cdDiffRedLight, 'none', {})
|
|
147 call <sid>hi('EndOfBuffer', s:cdLineNumber, s:cdBack, 'none', {})
|
|
148 call <sid>hi('ErrorMsg', s:cdRed, s:cdBack, 'none', {})
|
|
149 call <sid>hi('VertSplit', s:cdSplitDark, s:cdBack, 'none', {})
|
|
150 call <sid>hi('Folded', s:cdLeftLight, s:cdLeftDark, 'underline', {})
|
|
151 call <sid>hi('FoldColumn', s:cdLineNumber, s:cdBack, 'none', {})
|
|
152 call <sid>hi('SignColumn', {}, s:cdBack, 'none', {})
|
|
153 call <sid>hi('IncSearch', s:cdNone, s:cdSearchCurrent, 'none', {})
|
|
154 call <sid>hi('LineNr', s:cdLineNumber, s:cdBack, 'none', {})
|
|
155 call <sid>hi('CursorLineNr', s:cdPopupFront, s:cdBack, 'none', {})
|
|
156 call <sid>hi('MatchParen', s:cdNone, s:cdCursorDark, 'none', {})
|
|
157 call <sid>hi('ModeMsg', s:cdFront, s:cdLeftDark, 'none', {})
|
|
158 call <sid>hi('MoreMsg', s:cdFront, s:cdLeftDark, 'none', {})
|
|
159 call <sid>hi('NonText', s:cdLineNumber, s:cdBack, 'none', {})
|
|
160 call <sid>hi('Pmenu', s:cdPopupFront, s:cdPopupBack, 'none', {})
|
|
161 call <sid>hi('PmenuSel', s:cdPopupFront, s:cdPopupHighlightBlue, 'none', {})
|
|
162 call <sid>hi('PmenuSbar', {}, s:cdPopupHighlightGray, 'none', {})
|
|
163 call <sid>hi('PmenuThumb', {}, s:cdPopupFront, 'none', {})
|
|
164 call <sid>hi('Question', s:cdBlue, s:cdBack, 'none', {})
|
|
165 call <sid>hi('Search', s:cdNone, s:cdSearch, 'none', {})
|
|
166 call <sid>hi('SpecialKey', s:cdBlue, s:cdNone, 'none', {})
|
|
167 call <sid>hi('StatusLine', s:cdFront, s:cdLeftMid, 'none', {})
|
|
168 call <sid>hi('StatusLineNC', s:cdFront, s:cdLeftDark, 'none', {})
|
|
169 call <sid>hi('TabLine', s:cdFront, s:cdTabOther, 'none', {})
|
|
170 call <sid>hi('TabLineFill', s:cdFront, s:cdTabOutside, 'none', {})
|
|
171 call <sid>hi('TabLineSel', s:cdFront, s:cdTabCurrent, 'none', {})
|
|
172 call <sid>hi('Title', s:cdNone, s:cdNone, 'bold', {})
|
|
173 call <sid>hi('Visual', s:cdNone, s:cdSelection, 'none', {})
|
|
174 call <sid>hi('VisualNOS', s:cdNone, s:cdSelection, 'none', {})
|
|
175 call <sid>hi('WarningMsg', s:cdOrange, s:cdBack, 'none', {})
|
|
176 call <sid>hi('WildMenu', s:cdNone, s:cdSelection, 'none', {})
|
|
177
|
|
178 " Legacy groups for official git.vim and diff.vim syntax
|
|
179 hi! link diffAdded DiffAdd
|
|
180 hi! link diffChanged DiffChange
|
|
181 hi! link diffRemoved DiffDelete
|
|
182
|
673
|
183 if g:codedark_italics | call <sid>hi('Comment', s:cdGreen, {}, 'italic', {}) | else | call <sid>hi('Comment', s:cdGreen, {}, 'none', {}) | endif
|
662
|
184
|
|
185 call <sid>hi('Constant', s:cdBlue, {}, 'none', {})
|
|
186 call <sid>hi('String', s:cdOrange, {}, 'none', {})
|
|
187 call <sid>hi('Character', s:cdOrange, {}, 'none', {})
|
|
188 call <sid>hi('Number', s:cdLightGreen, {}, 'none', {})
|
|
189 call <sid>hi('Boolean', s:cdBlue, {}, 'none', {})
|
|
190 call <sid>hi('Float', s:cdLightGreen, {}, 'none', {})
|
|
191
|
|
192 call <sid>hi('Identifier', s:cdLightBlue, {}, 'none', {})
|
|
193 call <sid>hi('Function', s:cdYellow, {}, 'none', {})
|
|
194
|
|
195 call <sid>hi('Statement', s:cdPink, {}, 'none', {})
|
|
196 call <sid>hi('Conditional', s:cdPink, {}, 'none', {})
|
|
197 call <sid>hi('Repeat', s:cdPink, {}, 'none', {})
|
|
198 call <sid>hi('Label', s:cdPink, {}, 'none', {})
|
|
199 call <sid>hi('Operator', s:cdFront, {}, 'none', {})
|
|
200 call <sid>hi('Keyword', s:cdPink, {}, 'none', {})
|
|
201 call <sid>hi('Exception', s:cdPink, {}, 'none', {})
|
|
202
|
|
203 call <sid>hi('PreProc', s:cdPink, {}, 'none', {})
|
|
204 call <sid>hi('Include', s:cdPink, {}, 'none', {})
|
|
205 call <sid>hi('Define', s:cdPink, {}, 'none', {})
|
|
206 call <sid>hi('Macro', s:cdPink, {}, 'none', {})
|
|
207 call <sid>hi('PreCondit', s:cdPink, {}, 'none', {})
|
|
208
|
|
209 call <sid>hi('Type', s:cdBlue, {}, 'none', {})
|
|
210 call <sid>hi('StorageClass', s:cdBlue, {}, 'none', {})
|
|
211 call <sid>hi('Structure', s:cdBlue, {}, 'none', {})
|
|
212 call <sid>hi('Typedef', s:cdBlue, {}, 'none', {})
|
|
213
|
|
214 call <sid>hi('Special', s:cdYellowOrange, {}, 'none', {})
|
|
215 call <sid>hi('SpecialChar', s:cdFront, {}, 'none', {})
|
|
216 call <sid>hi('Tag', s:cdFront, {}, 'none', {})
|
|
217 call <sid>hi('Delimiter', s:cdFront, {}, 'none', {})
|
673
|
218 if g:codedark_italics | call <sid>hi('SpecialComment', s:cdGreen, {}, 'italic', {}) | else | call <sid>hi('SpecialComment', s:cdGreen, {}, 'none', {}) | endif
|
662
|
219 call <sid>hi('Debug', s:cdFront, {}, 'none', {})
|
|
220
|
|
221 call <sid>hi('Underlined', s:cdNone, {}, 'underline', {})
|
|
222 call <sid>hi("Conceal", s:cdFront, s:cdBack, 'none', {})
|
|
223
|
|
224 call <sid>hi('Ignore', s:cdFront, {}, 'none', {})
|
|
225
|
|
226 call <sid>hi('Error', s:cdRed, s:cdBack, 'undercurl', s:cdRed)
|
|
227
|
|
228 call <sid>hi('Todo', s:cdNone, s:cdLeftMid, 'none', {})
|
|
229
|
|
230 call <sid>hi('SpellBad', s:cdRed, s:cdBack, 'undercurl', s:cdRed)
|
|
231 call <sid>hi('SpellCap', s:cdRed, s:cdBack, 'undercurl', s:cdRed)
|
|
232 call <sid>hi('SpellRare', s:cdRed, s:cdBack, 'undercurl', s:cdRed)
|
|
233 call <sid>hi('SpellLocal', s:cdRed, s:cdBack, 'undercurl', s:cdRed)
|
|
234
|
|
235
|
|
236 " Neovim Treesitter:
|
|
237 call <sid>hi('TSError', s:cdRed, {}, 'none', {})
|
|
238 call <sid>hi('TSPunctDelimiter', s:cdFront, {}, 'none', {})
|
|
239 call <sid>hi('TSPunctBracket', s:cdFront, {}, 'none', {})
|
|
240 call <sid>hi('TSPunctSpecial', s:cdFront, {}, 'none', {})
|
|
241 " Constant
|
|
242 call <sid>hi('TSConstant', s:cdYellow, {}, 'none', {})
|
|
243 call <sid>hi('TSConstBuiltin', s:cdBlue, {}, 'none', {})
|
|
244 call <sid>hi('TSConstMacro', s:cdBlueGreen, {}, 'none', {})
|
|
245 call <sid>hi('TSStringRegex', s:cdOrange, {}, 'none', {})
|
|
246 call <sid>hi('TSString', s:cdOrange, {}, 'none', {})
|
|
247 call <sid>hi('TSStringEscape', s:cdYellowOrange, {}, 'none', {})
|
|
248 call <sid>hi('TSCharacter', s:cdOrange, {}, 'none', {})
|
|
249 call <sid>hi('TSNumber', s:cdLightGreen, {}, 'none', {})
|
|
250 call <sid>hi('TSBoolean', s:cdBlue, {}, 'none', {})
|
|
251 call <sid>hi('TSFloat', s:cdLightGreen, {}, 'none', {})
|
|
252 call <sid>hi('TSAnnotation', s:cdYellow, {}, 'none', {})
|
|
253 call <sid>hi('TSAttribute', s:cdBlueGreen, {}, 'none', {})
|
|
254 call <sid>hi('TSNamespace', s:cdBlueGreen, {}, 'none', {})
|
|
255 " Functions
|
|
256 call <sid>hi('TSFuncBuiltin', s:cdYellow, {}, 'none', {})
|
|
257 call <sid>hi('TSFunction', s:cdYellow, {}, 'none', {})
|
|
258 call <sid>hi('TSFuncMacro', s:cdYellow, {}, 'none', {})
|
|
259 call <sid>hi('TSParameter', s:cdLightBlue, {}, 'none', {})
|
|
260 call <sid>hi('TSParameterReference', s:cdLightBlue, {}, 'none', {})
|
|
261 call <sid>hi('TSMethod', s:cdYellow, {}, 'none', {})
|
|
262 call <sid>hi('TSField', s:cdLightBlue, {}, 'none', {})
|
|
263 call <sid>hi('TSProperty', s:cdLightBlue, {}, 'none', {})
|
|
264 call <sid>hi('TSConstructor', s:cdBlueGreen, {}, 'none', {})
|
|
265 " Keywords
|
|
266 call <sid>hi('TSConditional', s:cdPink, {}, 'none', {})
|
|
267 call <sid>hi('TSRepeat', s:cdPink, {}, 'none', {})
|
|
268 call <sid>hi('TSLabel', s:cdLightBlue, {}, 'none', {})
|
|
269 call <sid>hi('TSKeyword', s:cdBlue, {}, 'none', {})
|
673
|
270 call <sid>hi('TSKeywordFunction', s:cdBlue, {}, 'none', {})
|
662
|
271 call <sid>hi('TSKeywordOperator', s:cdBlue, {}, 'none', {})
|
|
272 call <sid>hi('TSOperator', s:cdFront, {}, 'none', {})
|
|
273 call <sid>hi('TSException', s:cdPink, {}, 'none', {})
|
|
274 call <sid>hi('TSType', s:cdBlueGreen, {}, 'none', {})
|
|
275 call <sid>hi('TSTypeBuiltin', s:cdBlue, {}, 'none', {})
|
|
276 call <sid>hi('TSStructure', s:cdLightBlue, {}, 'none', {})
|
|
277 call <sid>hi('TSInclude', s:cdPink, {}, 'none', {})
|
|
278 " Variable
|
|
279 call <sid>hi('TSVariable', s:cdLightBlue, {}, 'none', {})
|
|
280 call <sid>hi('TSVariableBuiltin', s:cdLightBlue, {}, 'none', {})
|
|
281 " Text
|
|
282 call <sid>hi('TSText', s:cdYellowOrange, {}, 'none', {})
|
|
283 call <sid>hi('TSStrong', s:cdYellowOrange, {}, 'none', {})
|
|
284 call <sid>hi('TSEmphasis', s:cdYellowOrange, {}, 'none', {})
|
|
285 call <sid>hi('TSUnderline', s:cdYellowOrange, {}, 'none', {})
|
|
286 call <sid>hi('TSTitle', s:cdYellowOrange, {}, 'none', {})
|
|
287 call <sid>hi('TSLiteral', s:cdYellowOrange, {}, 'none', {})
|
|
288 call <sid>hi('TSURI', s:cdYellowOrange, {}, 'none', {})
|
|
289 " Tags
|
|
290 call <sid>hi('TSTag', s:cdBlue, {}, 'none', {})
|
|
291 call <sid>hi('TSTagDelimiter', s:cdGray, {}, 'none', {})
|
|
292
|
|
293 " Markdown:
|
|
294 call <sid>hi('markdownBold', s:cdBlue, {}, 'bold', {})
|
|
295 call <sid>hi('markdownCode', s:cdOrange, {}, 'none', {})
|
|
296 call <sid>hi('markdownRule', s:cdBlue, {}, 'bold', {})
|
|
297 call <sid>hi('markdownCodeDelimiter', s:cdOrange, {}, 'none', {})
|
|
298 call <sid>hi('markdownHeadingDelimiter', s:cdBlue, {}, 'none', {})
|
|
299 call <sid>hi('markdownFootnote', s:cdOrange, {}, 'none', {})
|
|
300 call <sid>hi('markdownFootnoteDefinition', s:cdOrange, {}, 'none', {})
|
|
301 call <sid>hi('markdownUrl', s:cdLightBlue, {}, 'underline', {})
|
|
302 call <sid>hi('markdownLinkText', s:cdOrange, {}, 'none', {})
|
|
303 call <sid>hi('markdownEscape', s:cdYellowOrange, {}, 'none', {})
|
|
304
|
|
305 " Asciidoc (for default syntax highlighting)
|
|
306 call <sid>hi("asciidocAttributeEntry", s:cdYellowOrange, {}, 'none', {})
|
|
307 call <sid>hi("asciidocAttributeList", s:cdPink, {}, 'none', {})
|
|
308 call <sid>hi("asciidocAttributeRef", s:cdYellowOrange, {}, 'none', {})
|
|
309 call <sid>hi("asciidocHLabel", s:cdBlue, {}, 'bold', {})
|
|
310 call <sid>hi("asciidocListingBlock", s:cdOrange, {}, 'none', {})
|
|
311 call <sid>hi("asciidocMacroAttributes", s:cdYellowOrange, {}, 'none', {})
|
|
312 call <sid>hi("asciidocOneLineTitle", s:cdBlue, {}, 'bold', {})
|
|
313 call <sid>hi("asciidocPassthroughBlock", s:cdBlue, {}, 'none', {})
|
|
314 call <sid>hi("asciidocQuotedMonospaced", s:cdOrange, {}, 'none', {})
|
|
315 call <sid>hi("asciidocTriplePlusPassthrough", s:cdYellow, {}, 'none', {})
|
|
316 call <sid>hi("asciidocMacro", s:cdPink, {}, 'none', {})
|
|
317 call <sid>hi("asciidocAdmonition", s:cdOrange, {}, 'none', {})
|
|
318 call <sid>hi("asciidocQuotedEmphasized", s:cdBlue, {}, 'italic', {})
|
|
319 call <sid>hi("asciidocQuotedEmphasized2", s:cdBlue, {}, 'italic', {})
|
|
320 call <sid>hi("asciidocQuotedEmphasizedItalic", s:cdBlue, {}, 'italic', {})
|
|
321 hi! link asciidocBackslash Keyword
|
|
322 hi! link asciidocQuotedBold markdownBold
|
|
323 hi! link asciidocQuotedMonospaced2 asciidocQuotedMonospaced
|
|
324 hi! link asciidocQuotedUnconstrainedBold asciidocQuotedBold
|
|
325 hi! link asciidocQuotedUnconstrainedEmphasized asciidocQuotedEmphasized
|
|
326 hi! link asciidocURL markdownUrl
|
|
327
|
|
328 " JSON:
|
|
329 call <sid>hi('jsonKeyword', s:cdLightBlue, {}, 'none', {})
|
|
330 call <sid>hi('jsonEscape', s:cdYellowOrange, {}, 'none', {})
|
|
331 call <sid>hi('jsonNull', s:cdBlue, {}, 'none', {})
|
|
332 call <sid>hi('jsonBoolean', s:cdBlue, {}, 'none', {})
|
|
333
|
|
334 " HTML:
|
|
335 call <sid>hi('htmlTag', s:cdGray, {}, 'none', {})
|
|
336 call <sid>hi('htmlEndTag', s:cdGray, {}, 'none', {})
|
|
337 call <sid>hi('htmlTagName', s:cdBlue, {}, 'none', {})
|
|
338 call <sid>hi('htmlSpecialTagName', s:cdBlue, {}, 'none', {})
|
|
339 call <sid>hi('htmlArg', s:cdLightBlue, {}, 'none', {})
|
|
340
|
|
341 " PHP:
|
|
342 call <sid>hi('phpStaticClasses', s:cdBlueGreen, {}, 'none', {})
|
|
343 call <sid>hi('phpMethod', s:cdYellow, {}, 'none', {})
|
|
344 call <sid>hi('phpClass', s:cdBlueGreen, {}, 'none', {})
|
|
345 call <sid>hi('phpFunction', s:cdYellow, {}, 'none', {})
|
|
346 call <sid>hi('phpInclude', s:cdBlue, {}, 'none', {})
|
|
347 call <sid>hi('phpUseClass', s:cdBlueGreen, {}, 'none', {})
|
|
348 call <sid>hi('phpRegion', s:cdBlueGreen, {}, 'none', {})
|
|
349 call <sid>hi('phpMethodsVar', s:cdLightBlue, {}, 'none', {})
|
|
350
|
|
351 " CSS:
|
|
352 call <sid>hi('cssBraces', s:cdFront, {}, 'none', {})
|
|
353 call <sid>hi('cssInclude', s:cdPink, {}, 'none', {})
|
|
354 call <sid>hi('cssTagName', s:cdYellowOrange, {}, 'none', {})
|
|
355 call <sid>hi('cssClassName', s:cdYellowOrange, {}, 'none', {})
|
|
356 call <sid>hi('cssPseudoClass', s:cdYellowOrange, {}, 'none', {})
|
|
357 call <sid>hi('cssPseudoClassId', s:cdYellowOrange, {}, 'none', {})
|
|
358 call <sid>hi('cssPseudoClassLang', s:cdYellowOrange, {}, 'none', {})
|
|
359 call <sid>hi('cssIdentifier', s:cdYellowOrange, {}, 'none', {})
|
|
360 call <sid>hi('cssProp', s:cdLightBlue, {}, 'none', {})
|
|
361 call <sid>hi('cssDefinition', s:cdLightBlue, {}, 'none', {})
|
|
362 call <sid>hi('cssAttr', s:cdOrange, {}, 'none', {})
|
|
363 call <sid>hi('cssAttrRegion', s:cdOrange, {}, 'none', {})
|
|
364 call <sid>hi('cssColor', s:cdOrange, {}, 'none', {})
|
|
365 call <sid>hi('cssFunction', s:cdOrange, {}, 'none', {})
|
|
366 call <sid>hi('cssFunctionName', s:cdOrange, {}, 'none', {})
|
|
367 call <sid>hi('cssVendor', s:cdOrange, {}, 'none', {})
|
|
368 call <sid>hi('cssValueNumber', s:cdOrange, {}, 'none', {})
|
|
369 call <sid>hi('cssValueLength', s:cdOrange, {}, 'none', {})
|
|
370 call <sid>hi('cssUnitDecorators', s:cdOrange, {}, 'none', {})
|
|
371 call <sid>hi('cssStyle', s:cdLightBlue, {}, 'none', {})
|
|
372 call <sid>hi('cssImportant', s:cdBlue, {}, 'none', {})
|
|
373
|
|
374 " JavaScript:
|
|
375 call <sid>hi('jsVariableDef', s:cdLightBlue, {}, 'none', {})
|
|
376 call <sid>hi('jsFuncArgs', s:cdLightBlue, {}, 'none', {})
|
|
377 call <sid>hi('jsFuncBlock', s:cdLightBlue, {}, 'none', {})
|
|
378 call <sid>hi('jsRegexpString', s:cdLightRed, {}, 'none', {})
|
|
379 call <sid>hi('jsThis', s:cdBlue, {}, 'none', {})
|
|
380 call <sid>hi('jsOperatorKeyword', s:cdBlue, {}, 'none', {})
|
|
381 call <sid>hi('jsDestructuringBlock', s:cdLightBlue, {}, 'none', {})
|
|
382 call <sid>hi('jsObjectKey', s:cdLightBlue, {}, 'none', {})
|
|
383 call <sid>hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {})
|
|
384 call <sid>hi('jsModuleKeyword', s:cdLightBlue, {}, 'none', {})
|
|
385 call <sid>hi('jsClassDefinition', s:cdBlueGreen, {}, 'none', {})
|
|
386 call <sid>hi('jsClassKeyword', s:cdBlue, {}, 'none', {})
|
|
387 call <sid>hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {})
|
|
388 call <sid>hi('jsExportDefault', s:cdPink, {}, 'none', {})
|
|
389 call <sid>hi('jsFuncCall', s:cdYellow, {}, 'none', {})
|
|
390 call <sid>hi('jsObjectValue', s:cdLightBlue, {}, 'none', {})
|
|
391 call <sid>hi('jsParen', s:cdLightBlue, {}, 'none', {})
|
|
392 call <sid>hi('jsObjectProp', s:cdLightBlue, {}, 'none', {})
|
|
393 call <sid>hi('jsIfElseBlock', s:cdLightBlue, {}, 'none', {})
|
|
394 call <sid>hi('jsParenIfElse', s:cdLightBlue, {}, 'none', {})
|
|
395 call <sid>hi('jsSpreadOperator', s:cdLightBlue, {}, 'none', {})
|
|
396 call <sid>hi('jsSpreadExpression', s:cdLightBlue, {}, 'none', {})
|
|
397
|
|
398 " Typescript:
|
|
399 call <sid>hi('typescriptLabel', s:cdLightBlue, {}, 'none', {})
|
|
400 call <sid>hi('typescriptExceptions', s:cdLightBlue, {}, 'none', {})
|
|
401 call <sid>hi('typescriptBraces', s:cdFront, {}, 'none', {})
|
|
402 call <sid>hi('typescriptEndColons', s:cdLightBlue, {}, 'none', {})
|
|
403 call <sid>hi('typescriptParens', s:cdFront, {}, 'none', {})
|
|
404 call <sid>hi('typescriptDocTags', s:cdBlue, {}, 'none', {})
|
|
405 call <sid>hi('typescriptDocComment', s:cdBlueGreen, {}, 'none', {})
|
|
406 call <sid>hi('typescriptLogicSymbols', s:cdLightBlue, {}, 'none', {})
|
|
407 call <sid>hi('typescriptImport', s:cdPink, {}, 'none', {})
|
|
408 call <sid>hi('typescriptBOM', s:cdLightBlue, {}, 'none', {})
|
|
409 call <sid>hi('typescriptVariableDeclaration', s:cdLightBlue, {}, 'none', {})
|
|
410 call <sid>hi('typescriptVariable', s:cdBlue, {}, 'none', {})
|
|
411 call <sid>hi('typescriptExport', s:cdPink, {}, 'none', {})
|
|
412 call <sid>hi('typescriptAliasDeclaration', s:cdBlueGreen, {}, 'none', {})
|
|
413 call <sid>hi('typescriptAliasKeyword', s:cdBlue, {}, 'none', {})
|
|
414 call <sid>hi('typescriptClassName', s:cdBlueGreen, {}, 'none', {})
|
|
415 call <sid>hi('typescriptAccessibilityModifier', s:cdBlue, {}, 'none', {})
|
|
416 call <sid>hi('typescriptOperator', s:cdBlue, {}, 'none', {})
|
|
417 call <sid>hi('typescriptArrowFunc', s:cdBlue, {}, 'none', {})
|
|
418 call <sid>hi('typescriptMethodAccessor', s:cdBlue, {}, 'none', {})
|
|
419 call <sid>hi('typescriptMember', s:cdYellow, {}, 'none', {})
|
|
420 call <sid>hi('typescriptTypeReference', s:cdBlueGreen, {}, 'none', {})
|
|
421 call <sid>hi('typescriptDefault', s:cdLightBlue, {}, 'none', {})
|
|
422 call <sid>hi('typescriptTemplateSB', s:cdYellowOrange, {}, 'none', {})
|
|
423 call <sid>hi('typescriptArrowFuncArg', s:cdLightBlue, {}, 'none', {})
|
|
424 call <sid>hi('typescriptParamImpl', s:cdLightBlue, {}, 'none', {})
|
|
425 call <sid>hi('typescriptFuncComma', s:cdLightBlue, {}, 'none', {})
|
|
426 call <sid>hi('typescriptCastKeyword', s:cdLightBlue, {}, 'none', {})
|
|
427 call <sid>hi('typescriptCall', s:cdBlue, {}, 'none', {})
|
|
428 call <sid>hi('typescriptCase', s:cdLightBlue, {}, 'none', {})
|
|
429 call <sid>hi('typescriptReserved', s:cdPink, {}, 'none', {})
|
|
430 call <sid>hi('typescriptDefault', s:cdLightBlue, {}, 'none', {})
|
|
431 call <sid>hi('typescriptDecorator', s:cdYellow, {}, 'none', {})
|
|
432 call <sid>hi('typescriptPredefinedType', s:cdBlueGreen, {}, 'none', {})
|
|
433 call <sid>hi('typescriptClassHeritage', s:cdBlueGreen, {}, 'none', {})
|
|
434 call <sid>hi('typescriptClassExtends', s:cdBlue, {}, 'none', {})
|
|
435 call <sid>hi('typescriptClassKeyword', s:cdBlue, {}, 'none', {})
|
|
436 call <sid>hi('typescriptBlock', s:cdLightBlue, {}, 'none', {})
|
|
437 call <sid>hi('typescriptDOMDocProp', s:cdLightBlue, {}, 'none', {})
|
|
438 call <sid>hi('typescriptTemplateSubstitution', s:cdLightBlue, {}, 'none', {})
|
|
439 call <sid>hi('typescriptClassBlock', s:cdLightBlue, {}, 'none', {})
|
|
440 call <sid>hi('typescriptFuncCallArg', s:cdLightBlue, {}, 'none', {})
|
|
441 call <sid>hi('typescriptIndexExpr', s:cdLightBlue, {}, 'none', {})
|
|
442 call <sid>hi('typescriptConditionalParen', s:cdLightBlue, {}, 'none', {})
|
|
443 call <sid>hi('typescriptArray', s:cdYellow, {}, 'none', {})
|
|
444 call <sid>hi('typescriptES6SetProp', s:cdLightBlue, {}, 'none', {})
|
|
445 call <sid>hi('typescriptObjectLiteral', s:cdLightBlue, {}, 'none', {})
|
|
446 call <sid>hi('typescriptTypeParameter', s:cdBlueGreen, {}, 'none', {})
|
|
447 call <sid>hi('typescriptEnumKeyword', s:cdBlue, {}, 'none', {})
|
|
448 call <sid>hi('typescriptEnum', s:cdBlueGreen, {}, 'none', {})
|
|
449 call <sid>hi('typescriptLoopParen', s:cdLightBlue, {}, 'none', {})
|
|
450 call <sid>hi('typescriptParenExp', s:cdLightBlue, {}, 'none', {})
|
|
451 call <sid>hi('typescriptModule', s:cdLightBlue, {}, 'none', {})
|
|
452 call <sid>hi('typescriptAmbientDeclaration', s:cdBlue, {}, 'none', {})
|
|
453 call <sid>hi('typescriptModule', s:cdBlue, {}, 'none', {})
|
|
454 call <sid>hi('typescriptFuncTypeArrow', s:cdBlue, {}, 'none', {})
|
|
455 call <sid>hi('typescriptInterfaceHeritage', s:cdBlueGreen, {}, 'none', {})
|
|
456 call <sid>hi('typescriptInterfaceName', s:cdBlueGreen, {}, 'none', {})
|
|
457 call <sid>hi('typescriptInterfaceKeyword', s:cdBlue, {}, 'none', {})
|
|
458 call <sid>hi('typescriptInterfaceExtends', s:cdBlue, {}, 'none', {})
|
|
459 call <sid>hi('typescriptGlobal', s:cdBlueGreen, {}, 'none', {})
|
|
460 call <sid>hi('typescriptAsyncFuncKeyword', s:cdBlue, {}, 'none', {})
|
|
461 call <sid>hi('typescriptFuncKeyword', s:cdBlue, {}, 'none', {})
|
|
462 call <sid>hi('typescriptGlobalMethod', s:cdYellow, {}, 'none', {})
|
|
463 call <sid>hi('typescriptPromiseMethod', s:cdYellow, {}, 'none', {})
|
|
464
|
|
465 " XML:
|
|
466 call <sid>hi('xmlTag', s:cdBlueGreen, {}, 'none', {})
|
|
467 call <sid>hi('xmlTagName', s:cdBlueGreen, {}, 'none', {})
|
|
468 call <sid>hi('xmlEndTag', s:cdBlueGreen, {}, 'none', {})
|
|
469
|
|
470 " Ruby:
|
|
471 call <sid>hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {})
|
|
472 call <sid>hi('rubyClassName', s:cdBlueGreen, {}, 'none', {})
|
|
473 call <sid>hi('rubyModuleName', s:cdBlueGreen, {}, 'none', {})
|
|
474 call <sid>hi('rubyConstant', s:cdBlueGreen, {}, 'none', {})
|
|
475
|
|
476 " Golang:
|
|
477 call <sid>hi('goPackage', s:cdBlue, {}, 'none', {})
|
|
478 call <sid>hi('goImport', s:cdBlue, {}, 'none', {})
|
|
479 call <sid>hi('goVar', s:cdBlue, {}, 'none', {})
|
|
480 call <sid>hi('goConst', s:cdBlue, {}, 'none', {})
|
|
481 call <sid>hi('goStatement', s:cdPink, {}, 'none', {})
|
|
482 call <sid>hi('goType', s:cdBlueGreen, {}, 'none', {})
|
|
483 call <sid>hi('goSignedInts', s:cdBlueGreen, {}, 'none', {})
|
|
484 call <sid>hi('goUnsignedInts', s:cdBlueGreen, {}, 'none', {})
|
|
485 call <sid>hi('goFloats', s:cdBlueGreen, {}, 'none', {})
|
|
486 call <sid>hi('goComplexes', s:cdBlueGreen, {}, 'none', {})
|
|
487 call <sid>hi('goBuiltins', s:cdYellow, {}, 'none', {})
|
|
488 call <sid>hi('goBoolean', s:cdBlue, {}, 'none', {})
|
|
489 call <sid>hi('goPredefinedIdentifiers', s:cdBlue, {}, 'none', {})
|
|
490 call <sid>hi('goTodo', s:cdGreen, {}, 'none', {})
|
|
491 call <sid>hi('goDeclaration', s:cdBlue, {}, 'none', {})
|
|
492 call <sid>hi('goDeclType', s:cdBlue, {}, 'none', {})
|
|
493 call <sid>hi('goTypeDecl', s:cdBlue, {}, 'none', {})
|
|
494 call <sid>hi('goTypeName', s:cdBlueGreen, {}, 'none', {})
|
|
495 call <sid>hi('goVarAssign', s:cdLightBlue, {}, 'none', {})
|
|
496 call <sid>hi('goVarDefs', s:cdLightBlue, {}, 'none', {})
|
|
497 call <sid>hi('goReceiver', s:cdFront, {}, 'none', {})
|
|
498 call <sid>hi('goReceiverType', s:cdFront, {}, 'none', {})
|
|
499 call <sid>hi('goFunctionCall', s:cdYellow, {}, 'none', {})
|
|
500 call <sid>hi('goMethodCall', s:cdYellow, {}, 'none', {})
|
|
501 call <sid>hi('goSingleDecl', s:cdLightBlue, {}, 'none', {})
|
|
502
|
|
503 " Python:
|
|
504 call <sid>hi('pythonStatement', s:cdBlue, {}, 'none', {})
|
|
505 call <sid>hi('pythonOperator', s:cdBlue, {}, 'none', {})
|
|
506 call <sid>hi('pythonException', s:cdPink, {}, 'none', {})
|
|
507 call <sid>hi('pythonExClass', s:cdBlueGreen, {}, 'none', {})
|
|
508 call <sid>hi('pythonBuiltinObj', s:cdLightBlue, {}, 'none', {})
|
|
509 call <sid>hi('pythonBuiltinType', s:cdBlueGreen, {}, 'none', {})
|
|
510 call <sid>hi('pythonBoolean', s:cdBlue, {}, 'none', {})
|
|
511 call <sid>hi('pythonNone', s:cdBlue, {}, 'none', {})
|
|
512 call <sid>hi('pythonTodo', s:cdBlue, {}, 'none', {})
|
|
513 call <sid>hi('pythonClassVar', s:cdBlue, {}, 'none', {})
|
|
514 call <sid>hi('pythonClassDef', s:cdBlueGreen, {}, 'none', {})
|
|
515
|
|
516 " TeX:
|
|
517 call <sid>hi('texStatement', s:cdBlue, {}, 'none', {})
|
|
518 call <sid>hi('texBeginEnd', s:cdYellow, {}, 'none', {})
|
|
519 call <sid>hi('texBeginEndName', s:cdLightBlue, {}, 'none', {})
|
|
520 call <sid>hi('texOption', s:cdLightBlue, {}, 'none', {})
|
|
521 call <sid>hi('texBeginEndModifier', s:cdLightBlue, {}, 'none', {})
|
|
522 call <sid>hi('texDocType', s:cdPink, {}, 'none', {})
|
|
523 call <sid>hi('texDocTypeArgs', s:cdLightBlue, {}, 'none', {})
|
|
524
|
|
525 " Git:
|
|
526 call <sid>hi('gitcommitHeader', s:cdGray, {}, 'none', {})
|
|
527 call <sid>hi('gitcommitOnBranch', s:cdGray, {}, 'none', {})
|
|
528 call <sid>hi('gitcommitBranch', s:cdPink, {}, 'none', {})
|
|
529 call <sid>hi('gitcommitComment', s:cdGray, {}, 'none', {})
|
|
530 call <sid>hi('gitcommitSelectedType', s:cdGreen, {}, 'none', {})
|
|
531 call <sid>hi('gitcommitSelectedFile', s:cdGreen, {}, 'none', {})
|
|
532 call <sid>hi('gitcommitDiscardedType', s:cdRed, {}, 'none', {})
|
|
533 call <sid>hi('gitcommitDiscardedFile', s:cdRed, {}, 'none', {})
|
|
534 call <sid>hi('gitcommitOverflow', s:cdRed, {}, 'none', {})
|
|
535 call <sid>hi('gitcommitSummary', s:cdPink, {}, 'none', {})
|
|
536 call <sid>hi('gitcommitBlank', s:cdPink, {}, 'none', {})
|
|
537
|
|
538 " Lua:
|
|
539 call <sid>hi('luaFuncCall', s:cdYellow, {}, 'none', {})
|
|
540 call <sid>hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {})
|
|
541 call <sid>hi('luaFuncKeyword', s:cdPink, {}, 'none', {})
|
|
542 call <sid>hi('luaLocal', s:cdPink, {}, 'none', {})
|
|
543 call <sid>hi('luaBuiltIn', s:cdBlue, {}, 'none', {})
|
|
544
|
673
|
545
|
662
|
546 " SH:
|
|
547 call <sid>hi('shDeref', s:cdLightBlue, {}, 'none', {})
|
|
548 call <sid>hi('shVariable', s:cdLightBlue, {}, 'none', {})
|
|
549
|
|
550 " SQL:
|
|
551 call <sid>hi('sqlKeyword', s:cdPink, {}, 'none', {})
|
|
552 call <sid>hi('sqlFunction', s:cdYellowOrange, {}, 'none', {})
|
|
553 call <sid>hi('sqlOperator', s:cdPink, {}, 'none', {})
|
|
554
|
|
555 " YAML:
|
|
556 call <sid>hi('yamlKey', s:cdBlue, {}, 'none', {})
|
|
557 call <sid>hi('yamlConstant', s:cdBlue, {}, 'none', {})
|
|
558
|
673
|
559 " C++:
|
|
560 call <sid>hi('CTagsClass', s:cdBlueGreen, {}, 'none', {})
|
|
561 call <sid>hi('CTagsStructure', s:cdBlueGreen, {}, 'none', {})
|
|
562 call <sid>hi('CTagsNamespace', s:cdBlueGreen, {}, 'none', {})
|
|
563 call <sid>hi('CTagsGlobalVariable', s:cdBlueGreen, {}, 'none', {})
|
|
564 call <sid>hi('CTagsDefinedName ', s:cdBlue, {}, 'none', {})
|
|
565 highlight def link CTagsFunction Function
|
|
566 highlight def link CTagsMember Identifier
|
|
567
|
|
568 " C++ color_coded
|
|
569 call <sid>hi('StructDecl', s:cdBlueGreen, {}, 'none', {})
|
|
570 call <sid>hi('UnionDecl', s:cdBlueGreen, {}, 'none', {})
|
|
571 call <sid>hi('ClassDecl', s:cdBlueGreen, {}, 'none', {})
|
|
572 call <sid>hi('TypeRef', s:cdBlueGreen, {}, 'none', {})
|
|
573 call <sid>hi('TypedefDecl', s:cdBlueGreen, {}, 'none', {})
|
|
574 call <sid>hi('TypeAliasDecl', s:cdBlueGreen, {}, 'none', {})
|
|
575 call <sid>hi('EnumDecl', s:cdBlueGreen, {}, 'none', {})
|
|
576 call <sid>hi('TemplateTypeParameter', s:cdBlueGreen, {}, 'none', {})
|
|
577 call <sid>hi('TypeAliasTemplateDecl', s:cdBlueGreen, {}, 'none', {})
|
|
578 call <sid>hi('ClassTemplate', s:cdBlueGreen, {}, 'none', {})
|
|
579 call <sid>hi('ClassTemplatePartialSpecialization', s:cdBlueGreen, {}, 'none', {})
|
|
580 call <sid>hi('FunctionTemplate', s:cdBlueGreen, {}, 'none', {})
|
|
581 call <sid>hi('TemplateRef', s:cdBlueGreen, {}, 'none', {})
|
|
582 call <sid>hi('TemplateTemplateParameter', s:cdBlueGreen, {}, 'none', {})
|
|
583 call <sid>hi('UsingDeclaration', s:cdBlueGreen, {}, 'none', {})
|
|
584 call <sid>hi('MemberRef', s:cdLightBlue, {}, 'italic', {})
|
|
585 call <sid>hi('MemberRefExpr', s:cdYellow, {}, 'italic', {})
|
|
586 call <sid>hi('Namespace', s:cdSilver, {}, 'none', {})
|
|
587 call <sid>hi('NamespaceRef', s:cdSilver, {}, 'none', {})
|
|
588 call <sid>hi('NamespaceAlias', s:cdSilver, {}, 'none', {})
|
|
589
|
|
590 " C++ lsp-cxx-highlight
|
|
591 call <sid>hi('LspCxxHlSymClass', s:cdBlueGreen, {}, 'none', {})
|
|
592 call <sid>hi('LspCxxHlSymStruct', s:cdBlueGreen, {}, 'none', {})
|
|
593 call <sid>hi('LspCxxHlSymEnum', s:cdBlueGreen, {}, 'none', {})
|
|
594 call <sid>hi('LspCxxHlSymTypeAlias', s:cdBlueGreen, {}, 'none', {})
|
|
595 call <sid>hi('LspCxxHlSymTypeParameter', s:cdBlueGreen, {}, 'none', {})
|
|
596 call <sid>hi('LspCxxHlSymConcept', s:cdBlueGreen, {}, 'italic', {})
|
|
597 call <sid>hi('LspCxxHlSymNamespace', s:cdSilver, {}, 'none', {})
|
|
598
|
662
|
599 " Coc Explorer:
|
673
|
600 call <sid>hi('CocHighlightText', {}, s:cdSelection, 'none', {})
|
662
|
601 call <sid>hi('CocExplorerIndentLine', s:cdCursorDark, {}, 'none', {})
|
673
|
602
|
|
603 " nvim-cmp
|
|
604 call <sid>hi('CmpItemAbbrDeprecated', s:cdGray, {}, 'strikethrough', {})
|
|
605 call <sid>hi('CmpItemAbbrMatch', s:cdBlue, {}, 'none', {})
|
|
606 call <sid>hi('CmpItemAbbrMatchFuzzy', s:cdBlue, {}, 'none', {})
|
|
607 call <sid>hi('CmpItemKindVariable', s:cdLightBlue, {}, 'none', {})
|
|
608 call <sid>hi('CmpItemKindInterface', s:cdLightBlue, {}, 'none', {})
|
|
609 call <sid>hi('CmpItemKindText', s:cdLightBlue, {}, 'none', {})
|
|
610 call <sid>hi('CmpItemKindFunction', s:cdPink, {}, 'none', {})
|
|
611 call <sid>hi('CmpItemKindMethod ', s:cdPink, {}, 'none', {})
|
|
612 call <sid>hi('CmpItemKindKeyword', s:cdFront, {}, 'none', {})
|
|
613 call <sid>hi('CmpItemKindProperty', s:cdFront, {}, 'none', {})
|
|
614 call <sid>hi('CmpItemKindUnit', s:cdFront, {}, 'none', {})
|