badwolf.vim 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. " _ _ _ __
  2. " | |__ __ _ __| | __ _____ | |/ _|
  3. " | '_ \ / _` |/ _` | \ \ /\ / / _ \| | |_
  4. " | |_) | (_| | (_| | \ V V / (_) | | _|
  5. " |_.__/ \__,_|\__,_| \_/\_/ \___/|_|_|
  6. "
  7. " I am the Bad Wolf. I create myself.
  8. " I take the words. I scatter them in time and space.
  9. " A message to lead myself here.
  10. "
  11. " A Vim colorscheme pieced together by Steve Losh.
  12. " Available at http://stevelosh.com/projects/badwolf/
  13. "
  14. " Why? {{{
  15. "
  16. " After using Molokai for quite a long time, I started longing for
  17. " a replacement.
  18. "
  19. " I love Molokai's high contrast and gooey, saturated tones, but it can be
  20. " a little inconsistent at times.
  21. "
  22. " Also it's winter here in Rochester, so I wanted a color scheme that's a bit
  23. " warmer. A little less blue and a bit more red.
  24. "
  25. " And so Bad Wolf was born. I'm no designer, but designers have been scattering
  26. " beautiful colors through time and space long before I came along. I took
  27. " advantage of that and reused some of my favorites to lead me to this scheme.
  28. "
  29. " }}}
  30. " Supporting code -------------------------------------------------------------
  31. " Preamble {{{
  32. if !has("gui_running") && &t_Co != 88 && &t_Co != 256
  33. finish
  34. endif
  35. set background=dark
  36. if exists("syntax_on")
  37. syntax reset
  38. endif
  39. let colors_name = "badwolf"
  40. if !exists("g:badwolf_html_link_underline") " {{{
  41. let g:badwolf_html_link_underline = 1
  42. endif " }}}
  43. if !exists("g:badwolf_css_props_highlight") " {{{
  44. let g:badwolf_css_props_highlight = 0
  45. endif " }}}
  46. " }}}
  47. " Palette {{{
  48. let s:bwc = {}
  49. " The most basic of all our colors is a slightly tweaked version of the Molokai
  50. " Normal text.
  51. let s:bwc.plain = ['f8f6f2', 15]
  52. " Pure and simple.
  53. let s:bwc.snow = ['ffffff', 15]
  54. let s:bwc.coal = ['000000', 16]
  55. " All of the Gravel colors are based on a brown from Clouds Midnight.
  56. let s:bwc.brightgravel = ['d9cec3', 252]
  57. let s:bwc.lightgravel = ['998f84', 245]
  58. let s:bwc.gravel = ['857f78', 243]
  59. let s:bwc.mediumgravel = ['666462', 241]
  60. let s:bwc.deepgravel = ['45413b', 238]
  61. let s:bwc.deepergravel = ['35322d', 236]
  62. let s:bwc.darkgravel = ['242321', 235]
  63. let s:bwc.blackgravel = ['1c1b1a', 233]
  64. let s:bwc.blackestgravel = ['141413', 232]
  65. " A color sampled from a highlight in a photo of a glass of Dale's Pale Ale on
  66. " my desk.
  67. let s:bwc.dalespale = ['fade3e', 221]
  68. " A beautiful tan from Tomorrow Night.
  69. let s:bwc.dirtyblonde = ['f4cf86', 222]
  70. " Delicious, chewy red from Made of Code for the poppiest highlights.
  71. let s:bwc.taffy = ['ff2c4b', 196]
  72. " Another chewy accent, but use sparingly!
  73. let s:bwc.saltwatertaffy = ['8cffba', 121]
  74. " The star of the show comes straight from Made of Code.
  75. let s:bwc.tardis = ['0a9dff', 39]
  76. " This one's from Mustang, not Florida!
  77. let s:bwc.orange = ['ffa724', 214]
  78. " A limier green from Getafe.
  79. let s:bwc.lime = ['aeee00', 154]
  80. " Rose's dress in The Idiot's Lantern.
  81. let s:bwc.dress = ['ff9eb8', 211]
  82. " Another play on the brown from Clouds Midnight. I love that color.
  83. let s:bwc.toffee = ['b88853', 137]
  84. " Also based on that Clouds Midnight brown.
  85. let s:bwc.coffee = ['c7915b', 173]
  86. let s:bwc.darkroast = ['88633f', 95]
  87. " }}}
  88. " Highlighting Function {{{
  89. function! s:HL(group, fg, ...)
  90. " Arguments: group, guifg, guibg, gui, guisp
  91. let histring = 'hi ' . a:group . ' '
  92. if strlen(a:fg)
  93. if a:fg == 'fg'
  94. let histring .= 'guifg=fg ctermfg=fg '
  95. else
  96. let c = get(s:bwc, a:fg)
  97. let histring .= 'guifg=#' . c[0] . ' ctermfg=' . c[1] . ' '
  98. endif
  99. endif
  100. if a:0 >= 1 && strlen(a:1)
  101. if a:1 == 'bg'
  102. let histring .= 'guibg=bg ctermbg=bg '
  103. else
  104. let c = get(s:bwc, a:1)
  105. let histring .= 'guibg=#' . c[0] . ' ctermbg=' . c[1] . ' '
  106. endif
  107. endif
  108. if a:0 >= 2 && strlen(a:2)
  109. let histring .= 'gui=' . a:2 . ' cterm=' . a:2 . ' '
  110. endif
  111. if a:0 >= 3 && strlen(a:3)
  112. let c = get(s:bwc, a:3)
  113. let histring .= 'guisp=#' . c[0] . ' '
  114. endif
  115. " echom histring
  116. execute histring
  117. endfunction
  118. " }}}
  119. " Configuration Options {{{
  120. if exists('g:badwolf_darkgutter') && g:badwolf_darkgutter
  121. let s:gutter = 'blackestgravel'
  122. else
  123. let s:gutter = 'blackgravel'
  124. endif
  125. " }}}
  126. " Actual colorscheme ----------------------------------------------------------
  127. " Vanilla Vim {{{
  128. " General/UI {{{
  129. call s:HL('Normal', 'plain', 'blackgravel')
  130. call s:HL('Folded', 'mediumgravel', 'bg', 'none')
  131. call s:HL('VertSplit', 'lightgravel', 'bg', 'none')
  132. call s:HL('CursorLine', '', 'darkgravel', 'none')
  133. call s:HL('CursorColumn', '', 'darkgravel')
  134. call s:HL('ColorColumn', '', 'darkgravel')
  135. call s:HL('MatchParen', 'dalespale', 'darkgravel', 'bold')
  136. call s:HL('NonText', 'deepgravel', 'bg')
  137. call s:HL('SpecialKey', 'deepgravel', 'bg')
  138. call s:HL('Visual', '', 'deepgravel')
  139. call s:HL('VisualNOS', '', 'deepgravel')
  140. call s:HL('Search', 'coal', 'dalespale', 'bold')
  141. call s:HL('IncSearch', 'coal', 'tardis', 'bold')
  142. call s:HL('Underlined', 'fg', '', 'underline')
  143. call s:HL('StatusLine', 'coal', 'tardis', 'bold')
  144. call s:HL('StatusLineNC', 'snow', 'deepgravel', 'bold')
  145. call s:HL('Directory', 'dirtyblonde', '', 'bold')
  146. call s:HL('Title', 'lime')
  147. call s:HL('ErrorMsg', 'taffy', 'bg', 'bold')
  148. call s:HL('MoreMsg', 'dalespale', '', 'bold')
  149. call s:HL('ModeMsg', 'dirtyblonde', '', 'bold')
  150. call s:HL('Question', 'dirtyblonde', '', 'bold')
  151. call s:HL('WarningMsg', 'dress', '', 'bold')
  152. " This is a ctags tag, not an HTML one. 'Something you can use c-] on'.
  153. call s:HL('Tag', '', '', 'bold')
  154. " hi IndentGuides guibg=#373737
  155. " hi WildMenu guifg=#66D9EF guibg=#000000
  156. " }}}
  157. " Gutter {{{
  158. call s:HL('LineNr', 'mediumgravel', s:gutter)
  159. call s:HL('SignColumn', '', s:gutter)
  160. call s:HL('FoldColumn', 'mediumgravel', s:gutter)
  161. " }}}
  162. " Cursor {{{
  163. call s:HL('Cursor', 'coal', 'tardis', 'bold')
  164. call s:HL('vCursor', 'coal', 'tardis', 'bold')
  165. call s:HL('iCursor', 'coal', 'tardis', 'none')
  166. " }}}
  167. " Syntax highlighting {{{
  168. " Start with a simple base.
  169. call s:HL('Special', 'plain')
  170. " Comments are slightly brighter than folds, to make 'headers' easier to see.
  171. call s:HL('Comment', 'gravel')
  172. call s:HL('Todo', 'snow', 'bg', 'bold')
  173. call s:HL('SpecialComment', 'snow', 'bg', 'bold')
  174. " Strings are a nice, pale straw color. Nothing too fancy.
  175. call s:HL('String', 'dirtyblonde')
  176. " Control flow stuff is taffy.
  177. call s:HL('Statement', 'taffy', '', 'bold')
  178. call s:HL('Keyword', 'taffy', '', 'bold')
  179. call s:HL('Conditional', 'taffy', '', 'bold')
  180. call s:HL('Operator', 'taffy', '', 'none')
  181. call s:HL('Label', 'taffy', '', 'none')
  182. call s:HL('Repeat', 'taffy', '', 'none')
  183. " Functions and variable declarations are orange, because plain looks weird.
  184. call s:HL('Identifier', 'orange', '', 'none')
  185. call s:HL('Function', 'orange', '', 'none')
  186. " Preprocessor stuff is lime, to make it pop.
  187. "
  188. " This includes imports in any given language, because they should usually be
  189. " grouped together at the beginning of a file. If they're in the middle of some
  190. " other code they should stand out, because something tricky is
  191. " probably going on.
  192. call s:HL('PreProc', 'lime', '', 'none')
  193. call s:HL('Macro', 'lime', '', 'none')
  194. call s:HL('Define', 'lime', '', 'none')
  195. call s:HL('PreCondit', 'lime', '', 'bold')
  196. " Constants of all kinds are colored together.
  197. " I'm not really happy with the color yet...
  198. call s:HL('Constant', 'toffee', '', 'bold')
  199. call s:HL('Character', 'toffee', '', 'bold')
  200. call s:HL('Boolean', 'toffee', '', 'bold')
  201. call s:HL('Number', 'toffee', '', 'bold')
  202. call s:HL('Float', 'toffee', '', 'bold')
  203. " Not sure what 'special character in a constant' means, but let's make it pop.
  204. call s:HL('SpecialChar', 'dress', '', 'bold')
  205. call s:HL('Type', 'dress', '', 'none')
  206. call s:HL('StorageClass', 'taffy', '', 'none')
  207. call s:HL('Structure', 'taffy', '', 'none')
  208. call s:HL('Typedef', 'taffy', '', 'bold')
  209. " Make try/catch blocks stand out.
  210. call s:HL('Exception', 'lime', '', 'bold')
  211. " Misc
  212. call s:HL('Error', 'snow', 'taffy', 'bold')
  213. call s:HL('Debug', 'snow', '', 'bold')
  214. call s:HL('Ignore', 'gravel', '', '')
  215. " }}}
  216. " Completion Menu {{{
  217. call s:HL('Pmenu', 'plain', 'deepergravel')
  218. call s:HL('PmenuSel', 'coal', 'tardis', 'bold')
  219. call s:HL('PmenuSbar', '', 'deepergravel')
  220. call s:HL('PmenuThumb', 'brightgravel')
  221. " }}}
  222. " Diffs {{{
  223. call s:HL('DiffDelete', 'coal', 'coal')
  224. call s:HL('DiffAdd', '', 'deepergravel')
  225. call s:HL('DiffChange', '', 'darkgravel')
  226. call s:HL('DiffText', 'snow', 'deepergravel', 'bold')
  227. " }}}
  228. " Spelling {{{
  229. if has("spell")
  230. call s:HL('SpellCap', 'dalespale', 'bg', 'undercurl,bold', 'dalespale')
  231. call s:HL('SpellBad', '', '', 'undercurl', 'dalespale')
  232. call s:HL('SpellLocal', '', '', 'undercurl', 'dalespale')
  233. call s:HL('SpellRare', '', '', 'undercurl', 'dalespale')
  234. endif
  235. " }}}
  236. " }}}
  237. " Plugins {{{
  238. " CtrlP {{{
  239. " the message when no match is found
  240. call s:HL('CtrlPNoEntries', 'snow', 'taffy', 'bold')
  241. " the matched pattern
  242. call s:HL('CtrlPMatch', 'orange', 'bg', 'none')
  243. " the line prefix '>' in the match window
  244. call s:HL('CtrlPLinePre', 'deepgravel', 'bg', 'none')
  245. " the prompt’s base
  246. call s:HL('CtrlPPrtBase', 'deepgravel', 'bg', 'none')
  247. " the prompt’s text
  248. call s:HL('CtrlPPrtText', 'plain', 'bg', 'none')
  249. " the prompt’s cursor when moving over the text
  250. call s:HL('CtrlPPrtCursor', 'coal', 'tardis', 'bold')
  251. " 'prt' or 'win', also for 'regex'
  252. call s:HL('CtrlPMode1', 'coal', 'tardis', 'bold')
  253. " 'file' or 'path', also for the local working dir
  254. call s:HL('CtrlPMode2', 'coal', 'tardis', 'bold')
  255. " the scanning status
  256. call s:HL('CtrlPStats', 'coal', 'tardis', 'bold')
  257. " TODO: CtrlP extensions.
  258. " CtrlPTabExtra : the part of each line that’s not matched against (Comment)
  259. " CtrlPqfLineCol : the line and column numbers in quickfix mode (|s:HL-Search|)
  260. " CtrlPUndoT : the elapsed time in undo mode (|s:HL-Directory|)
  261. " CtrlPUndoBr : the square brackets [] in undo mode (Comment)
  262. " CtrlPUndoNr : the undo number inside [] in undo mode (String)
  263. " }}}
  264. " EasyMotion {{{
  265. call s:HL('EasyMotionTarget', 'tardis', 'bg', 'bold')
  266. call s:HL('EasyMotionShade', 'deepgravel', 'bg')
  267. " }}}
  268. " Interesting Words {{{
  269. " These are only used if you're me or have copied the <leader>hNUM mappings
  270. " from my Vimrc.
  271. call s:HL('InterestingWord1', 'coal', 'orange')
  272. call s:HL('InterestingWord2', 'coal', 'lime')
  273. call s:HL('InterestingWord3', 'coal', 'taffy')
  274. " }}}
  275. " Makegreen {{{
  276. " hi GreenBar term=reverse ctermfg=white ctermbg=green guifg=coal guibg=#9edf1c
  277. " hi RedBar term=reverse ctermfg=white ctermbg=red guifg=white guibg=#C50048
  278. " }}}
  279. " ShowMarks {{{
  280. call s:HL('ShowMarksHLl', 'tardis', 'blackgravel')
  281. call s:HL('ShowMarksHLu', 'tardis', 'blackgravel')
  282. call s:HL('ShowMarksHLo', 'tardis', 'blackgravel')
  283. call s:HL('ShowMarksHLm', 'tardis', 'blackgravel')
  284. " }}}
  285. " }}}
  286. " Filetype-specific {{{
  287. " Clojure {{{
  288. call s:HL('clojureSpecial', 'taffy', '', '')
  289. call s:HL('clojureDefn', 'taffy', '', '')
  290. call s:HL('clojureDefMacro', 'taffy', '', '')
  291. call s:HL('clojureDefine', 'taffy', '', '')
  292. call s:HL('clojureMacro', 'taffy', '', '')
  293. call s:HL('clojureCond', 'taffy', '', '')
  294. call s:HL('clojureKeyword', 'orange', '', 'none')
  295. call s:HL('clojureFunc', 'dress', '', 'none')
  296. call s:HL('clojureRepeat', 'dress', '', 'none')
  297. call s:HL('clojureParen0', 'lightgravel', '', 'none')
  298. call s:HL('clojureAnonArg', 'snow', '', 'bold')
  299. " }}}
  300. " CSS {{{
  301. if g:badwolf_css_props_highlight
  302. call s:HL('cssColorProp', 'dirtyblonde', '', 'none')
  303. call s:HL('cssBoxProp', 'dirtyblonde', '', 'none')
  304. call s:HL('cssTextProp', 'dirtyblonde', '', 'none')
  305. call s:HL('cssRenderProp', 'dirtyblonde', '', 'none')
  306. call s:HL('cssGeneratedContentProp', 'dirtyblonde', '', 'none')
  307. else
  308. call s:HL('cssColorProp', 'fg', '', 'none')
  309. call s:HL('cssBoxProp', 'fg', '', 'none')
  310. call s:HL('cssTextProp', 'fg', '', 'none')
  311. call s:HL('cssRenderProp', 'fg', '', 'none')
  312. call s:HL('cssGeneratedContentProp', 'fg', '', 'none')
  313. end
  314. call s:HL('cssValueLength', 'toffee', '', 'bold')
  315. call s:HL('cssColor', 'toffee', '', 'bold')
  316. call s:HL('cssBraces', 'lightgravel', '', 'none')
  317. call s:HL('cssIdentifier', 'orange', '', 'bold')
  318. call s:HL('cssClassName', 'orange', '', 'none')
  319. " }}}
  320. " Diff {{{
  321. call s:HL('gitDiff', 'lightgravel', '',)
  322. call s:HL('diffRemoved', 'dress', '',)
  323. call s:HL('diffAdded', 'lime', '',)
  324. call s:HL('diffFile', 'coal', 'taffy', 'bold')
  325. call s:HL('diffNewFile', 'coal', 'taffy', 'bold')
  326. call s:HL('diffLine', 'coal', 'orange', 'bold')
  327. call s:HL('diffSubname', 'orange', '', 'none')
  328. " }}}
  329. " Django Templates {{{
  330. call s:HL('djangoArgument', 'dirtyblonde', '',)
  331. call s:HL('djangoTagBlock', 'orange', '')
  332. call s:HL('djangoVarBlock', 'orange', '')
  333. " hi djangoStatement guifg=#ff3853 gui=bold
  334. " hi djangoVarBlock guifg=#f4cf86
  335. " }}}
  336. " HTML {{{
  337. " Punctuation
  338. call s:HL('htmlTag', 'darkroast', 'bg', 'none')
  339. call s:HL('htmlEndTag', 'darkroast', 'bg', 'none')
  340. " Tag names
  341. call s:HL('htmlTagName', 'coffee', '', 'bold')
  342. call s:HL('htmlSpecialTagName', 'coffee', '', 'bold')
  343. call s:HL('htmlSpecialChar', 'lime', '', 'none')
  344. " Attributes
  345. call s:HL('htmlArg', 'coffee', '', 'none')
  346. " Stuff inside an <a> tag
  347. if g:badwolf_html_link_underline
  348. call s:HL('htmlLink', 'lightgravel', '', 'underline')
  349. else
  350. call s:HL('htmlLink', 'lightgravel', '', 'none')
  351. endif
  352. " }}}
  353. " Java {{{
  354. call s:HL('javaClassDecl', 'taffy', '', 'bold')
  355. call s:HL('javaScopeDecl', 'taffy', '', 'bold')
  356. call s:HL('javaCommentTitle', 'gravel', '')
  357. call s:HL('javaDocTags', 'snow', '', 'none')
  358. call s:HL('javaDocParam', 'dalespale', '', '')
  359. " }}}
  360. " LessCSS {{{
  361. call s:HL('lessVariable', 'lime', '', 'none')
  362. " }}}
  363. " Mail {{{
  364. call s:HL('mailSubject', 'orange', '', 'bold')
  365. call s:HL('mailHeader', 'lightgravel', '', '')
  366. call s:HL('mailHeaderKey', 'lightgravel', '', '')
  367. call s:HL('mailHeaderEmail', 'snow', '', '')
  368. call s:HL('mailURL', 'toffee', '', 'underline')
  369. call s:HL('mailSignature', 'gravel', '', 'none')
  370. call s:HL('mailQuoted1', 'gravel', '', 'none')
  371. call s:HL('mailQuoted2', 'dress', '', 'none')
  372. call s:HL('mailQuoted3', 'dirtyblonde', '', 'none')
  373. call s:HL('mailQuoted4', 'orange', '', 'none')
  374. call s:HL('mailQuoted5', 'lime', '', 'none')
  375. " }}}
  376. " Markdown {{{
  377. call s:HL('markdownHeadingRule', 'lightgravel', '', 'bold')
  378. call s:HL('markdownHeadingDelimiter', 'lightgravel', '', 'bold')
  379. call s:HL('markdownOrderedListMarker', 'lightgravel', '', 'bold')
  380. call s:HL('markdownListMarker', 'lightgravel', '', 'bold')
  381. call s:HL('markdownItalic', 'snow', '', 'bold')
  382. call s:HL('markdownBold', 'snow', '', 'bold')
  383. call s:HL('markdownH1', 'orange', '', 'bold')
  384. call s:HL('markdownH2', 'lime', '', 'bold')
  385. call s:HL('markdownH3', 'lime', '', 'none')
  386. call s:HL('markdownH4', 'lime', '', 'none')
  387. call s:HL('markdownH5', 'lime', '', 'none')
  388. call s:HL('markdownH6', 'lime', '', 'none')
  389. call s:HL('markdownLinkText', 'toffee', '', 'underline')
  390. call s:HL('markdownIdDeclaration', 'toffee')
  391. call s:HL('markdownAutomaticLink', 'toffee', '', 'bold')
  392. call s:HL('markdownUrl', 'toffee', '', 'bold')
  393. call s:HL('markdownUrldelimiter', 'lightgravel', '', 'bold')
  394. call s:HL('markdownLinkDelimiter', 'lightgravel', '', 'bold')
  395. call s:HL('markdownLinkTextDelimiter', 'lightgravel', '', 'bold')
  396. call s:HL('markdownCodeDelimiter', 'dirtyblonde', '', 'bold')
  397. call s:HL('markdownCode', 'dirtyblonde', '', 'none')
  398. call s:HL('markdownCodeBlock', 'dirtyblonde', '', 'none')
  399. " }}}
  400. " MySQL {{{
  401. call s:HL('mysqlSpecial', 'dress', '', 'bold')
  402. " }}}
  403. " Python {{{
  404. hi def link pythonOperator Operator
  405. call s:HL('pythonBuiltin', 'dress')
  406. call s:HL('pythonBuiltinObj', 'dress')
  407. call s:HL('pythonBuiltinFunc', 'dress')
  408. call s:HL('pythonEscape', 'dress')
  409. call s:HL('pythonException', 'lime', '', 'bold')
  410. call s:HL('pythonExceptions', 'lime', '', 'none')
  411. call s:HL('pythonPrecondit', 'lime', '', 'none')
  412. call s:HL('pythonDecorator', 'taffy', '', 'none')
  413. call s:HL('pythonRun', 'gravel', '', 'bold')
  414. call s:HL('pythonCoding', 'gravel', '', 'bold')
  415. " }}}
  416. " SLIMV {{{
  417. " Rainbow parentheses
  418. call s:HL('hlLevel0', 'gravel')
  419. call s:HL('hlLevel1', 'orange')
  420. call s:HL('hlLevel2', 'saltwatertaffy')
  421. call s:HL('hlLevel3', 'dress')
  422. call s:HL('hlLevel4', 'coffee')
  423. call s:HL('hlLevel5', 'dirtyblonde')
  424. call s:HL('hlLevel6', 'orange')
  425. call s:HL('hlLevel7', 'saltwatertaffy')
  426. call s:HL('hlLevel8', 'dress')
  427. call s:HL('hlLevel9', 'coffee')
  428. " }}}
  429. " Vim {{{
  430. call s:HL('VimCommentTitle', 'lightgravel', '', 'bold')
  431. call s:HL('VimMapMod', 'dress', '', 'none')
  432. call s:HL('VimMapModKey', 'dress', '', 'none')
  433. call s:HL('VimNotation', 'dress', '', 'none')
  434. call s:HL('VimBracket', 'dress', '', 'none')
  435. " }}}
  436. " }}}