" Vim color file " Maintainer: Dion Nicolaas " Last Change: 2001 September 24 " This color scheme uses a white background, and only black. For printing. " The attributes chosen make for a nice printed manual from the Vim help " files. Works together with 2html.vim. " Might be used for other files, too, and might work for terms and cterms; " your milage may vary. " Colorscheme thanks to Mike Williams " First remove all existing highlighting. set background=light hi clear if exists("syntax_on") syntax reset endif let colors_name = "printman" hi Normal ctermfg=Black ctermbg=White guifg=Black guibg=White " Colors for syntax highlighting "hi link helpExampleStart helpIgnore "hi link helpIgnore Ignore hi Ignore ctermfg=LightGrey guifg=grey90 "hi link helpHyperTextJump Subtitle "hi link Subtitle Identifier (not used in help.vim) "hi link helpVim Identifier hi Identifier cterm=underline term=underline gui=italic ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpHyperTextEntry String hi String gui=bold,italic ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpHeadline Statement hi Statement term=bold cterm=bold gui=bold ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpHeader PreProc "hi link helpSectionDelim PreProc hi PreProc cterm=bold term=bold gui=bold ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpExample Comment hi Comment term=bold cterm=bold gui=bold ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpOption Type hi Type cterm=underline term=underline gui=italic ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpNotVi Special "hi link helpSpecial Special hi Special term=underline cterm=underline gui=italic ctermbg=white ctermfg=black guibg=white guifg=black "hi link helpNote Todo hi Todo term=standout cterm=underline,bold gui=underline,italic,bold ctermbg=White ctermfg=Black guifg=Black guibg=White " Not in help files, for printing other stuff only hi Constant ctermbg=white ctermfg=black guibg=white guifg=black hi Error term=reverse ctermbg=Black ctermfg=White guibg=Black guifg=White " vim: sw=2