]>
Commit | Line | Data |
---|---|---|
1 | " Vim color file | |
2 | " Maintainer: Mike Williams <mrw@eandem.co.uk> | |
3 | " Last Change: 2nd June 2003 | |
4 | " Version: 1.1 | |
5 | ||
6 | " Remove all existing highlighting. | |
7 | set background=light | |
8 | ||
9 | hi clear | |
10 | ||
11 | if exists("syntax_on") | |
12 | syntax reset | |
13 | endif | |
14 | ||
15 | let g:colors_name = "print_bw" | |
16 | ||
17 | highlight Normal cterm=NONE ctermfg=black ctermbg=white gui=NONE guifg=black guibg=white | |
18 | highlight NonText ctermfg=black ctermbg=white guifg=black guibg=white | |
19 | highlight LineNr cterm=italic ctermfg=black ctermbg=white gui=italic guifg=black guibg=white | |
20 | ||
21 | " Syntax highlighting scheme | |
22 | highlight Comment cterm=italic ctermfg=black ctermbg=white gui=italic guifg=black guibg=white | |
23 | ||
24 | highlight Constant ctermfg=black ctermbg=white guifg=black guibg=white | |
25 | highlight String ctermfg=black ctermbg=white guifg=black guibg=white | |
26 | highlight Character ctermfg=black ctermbg=white guifg=black guibg=white | |
27 | highlight Number ctermfg=black ctermbg=white guifg=black guibg=white | |
28 | " Boolean defaults to Constant | |
29 | highlight Float ctermfg=black ctermbg=white guifg=black guibg=white | |
30 | ||
31 | highlight Identifier ctermfg=black ctermbg=white guifg=black guibg=white | |
32 | highlight Function ctermfg=black ctermbg=white guifg=black guibg=white | |
33 | ||
34 | highlight Statement ctermfg=black ctermbg=white guifg=black guibg=white | |
35 | highlight Conditional ctermfg=black ctermbg=white guifg=black guibg=white | |
36 | highlight Repeat ctermfg=black ctermbg=white guifg=black guibg=white | |
37 | highlight Label ctermfg=black ctermbg=white guifg=black guibg=white | |
38 | highlight Operator ctermfg=black ctermbg=white guifg=black guibg=white | |
39 | " Keyword defaults to Statement | |
40 | " Exception defaults to Statement | |
41 | ||
42 | highlight PreProc cterm=bold ctermfg=black ctermbg=white gui=bold guifg=black guibg=white | |
43 | " Include defaults to PreProc | |
44 | " Define defaults to PreProc | |
45 | " Macro defaults to PreProc | |
46 | " PreCondit defaults to PreProc | |
47 | ||
48 | highlight Type cterm=bold ctermfg=black ctermbg=white gui=bold guifg=black guibg=white | |
49 | " StorageClass defaults to Type | |
50 | " Structure defaults to Type | |
51 | " Typedef defaults to Type | |
52 | ||
53 | highlight Special cterm=italic ctermfg=black ctermbg=white gui=italic guifg=black guibg=white | |
54 | " SpecialChar defaults to Special | |
55 | " Tag defaults to Special | |
56 | " Delimiter defaults to Special | |
57 | highlight SpecialComment cterm=italic ctermfg=black ctermbg=white gui=italic guifg=black guibg=white | |
58 | " Debug defaults to Special | |
59 | ||
60 | highlight Todo cterm=italic,bold ctermfg=black ctermbg=white gui=italic,bold guifg=black guibg=white | |
61 | " Ideally, the bg color would be white but VIM cannot print white on black! | |
62 | highlight Error cterm=bold,reverse ctermfg=black ctermbg=grey gui=bold,reverse guifg=black guibg=grey | |
63 | ||
64 | " vim:et:ff=unix:tw=0:ts=4:sw=4 | |
65 | " EOF print_bw.vim |