1" local syntax file - set colors on a per-machine basis:
2" vim: tw=0 ts=4 sw=4
3" Vim color file
4" Maintainer:	Ron Aaron <ron@ronware.org>
5" Last Change:	2003 May 02
6
7set background=dark
8hi clear
9if exists("syntax_on")
10  syntax reset
11endif
12let g:colors_name = "elflord"
13hi Normal		guifg=cyan			guibg=black
14hi Comment	term=bold		ctermfg=DarkCyan		guifg=#80a0ff
15hi Constant	term=underline	ctermfg=Magenta		guifg=Magenta
16hi Special	term=bold		ctermfg=DarkMagenta	guifg=Red
17hi Identifier term=underline	cterm=bold			ctermfg=Cyan guifg=#40ffff
18hi Statement term=bold		ctermfg=Yellow gui=bold	guifg=#aa4444
19hi PreProc	term=underline	ctermfg=LightBlue	guifg=#ff80ff
20hi Type	term=underline		ctermfg=LightGreen	guifg=#60ff60 gui=bold
21hi Function	term=bold		ctermfg=White guifg=White
22hi Repeat	term=underline	ctermfg=White		guifg=white
23hi Operator				ctermfg=Red			guifg=Red
24hi Ignore				ctermfg=black		guifg=bg
25hi Error	term=reverse ctermbg=Red ctermfg=White guibg=Red guifg=White
26hi Todo	term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=Yellow
27
28" Common groups that link to default highlighting.
29" You can specify other highlighting easily.
30hi link String	Constant
31hi link Character	Constant
32hi link Number	Constant
33hi link Boolean	Constant
34hi link Float		Number
35hi link Conditional	Repeat
36hi link Label		Statement
37hi link Keyword	Statement
38hi link Exception	Statement
39hi link Include	PreProc
40hi link Define	PreProc
41hi link Macro		PreProc
42hi link PreCondit	PreProc
43hi link StorageClass	Type
44hi link Structure	Type
45hi link Typedef	Type
46hi link Tag		Special
47hi link SpecialChar	Special
48hi link Delimiter	Special
49hi link SpecialComment Special
50hi link Debug		Special
51