Add support for :winpos
[MacVim.git] / runtime / colors / elflord.vim
blobf74a828947f75f08d1431188b8f23d3332d6fec6
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
7 set background=dark
8 hi clear
9 if exists("syntax_on")
10   syntax reset
11 endif
12 let g:colors_name = "elflord"
13 hi Normal               guifg=cyan                      guibg=black
14 hi Comment      term=bold               ctermfg=DarkCyan                guifg=#80a0ff
15 hi Constant     term=underline  ctermfg=Magenta         guifg=Magenta
16 hi Special      term=bold               ctermfg=DarkMagenta     guifg=Red
17 hi Identifier term=underline    cterm=bold                      ctermfg=Cyan guifg=#40ffff
18 hi Statement term=bold          ctermfg=Yellow gui=bold guifg=#aa4444
19 hi PreProc      term=underline  ctermfg=LightBlue       guifg=#ff80ff
20 hi Type term=underline          ctermfg=LightGreen      guifg=#60ff60 gui=bold
21 hi Function     term=bold               ctermfg=White guifg=White
22 hi Repeat       term=underline  ctermfg=White           guifg=white
23 hi Operator                             ctermfg=Red                     guifg=Red
24 hi Ignore                               ctermfg=black           guifg=bg
25 hi Error        term=reverse ctermbg=Red ctermfg=White guibg=Red guifg=White
26 hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=Yellow
28 " Common groups that link to default highlighting.
29 " You can specify other highlighting easily.
30 hi link String  Constant
31 hi link Character       Constant
32 hi link Number  Constant
33 hi link Boolean Constant
34 hi link Float           Number
35 hi link Conditional     Repeat
36 hi link Label           Statement
37 hi link Keyword Statement
38 hi link Exception       Statement
39 hi link Include PreProc
40 hi link Define  PreProc
41 hi link Macro           PreProc
42 hi link PreCondit       PreProc
43 hi link StorageClass    Type
44 hi link Structure       Type
45 hi link Typedef Type
46 hi link Tag             Special
47 hi link SpecialChar     Special
48 hi link Delimiter       Special
49 hi link SpecialComment Special
50 hi link Debug           Special