add vim conf files
[arrow.git] / conf_slk120 / vim / _vim / colors / adrian.vim
blob481f6d70a06708e782a09ff4beea5b5c09942def
2 " Vim colorscheme file
3 " Maintainer:   Adrian Nagle <vim@naglenet.org>
4 " Last Change:  2001-09-25 07:48:15 Mountain Daylight Time
5 " URL:          http://www.naglenet.org/vim/syntax/adrian.vim
6 " MAIN URL:     http://www.naglenet.org/vim
8 " This is my custom syntax file to override the defaults provided with Vim.
9 " This file should be located in $HOME/vimfiles/colors.
11 " This file should automatically be sourced by $RUNTIMEPATH.
13 " NOTE(S):
14 " *(1)
15 " The color definitions assumes and is intended for a black or dark
16 " background.
18 " *(2)
19 " This file is specifically in Unix style EOL format so that I can simply
20 " copy this file between Windows and Unix systems.  VIM can source files in
21 " with the UNIX EOL format (only <NL> instead of <CR><NR> for DOS) in any
22 " operating system if the 'fileformats' is not empty and there is no <CR>
23 " just before the <NL> on the first line.  See ':help :source_crnl' and
24 " ':help fileformats'.
26 " *(3)
27 " Move this file to adrian.vim for vim6.0aw.
32 hi clear
33 set background=dark
34 if exists("syntax_on")
35   syntax reset
36 endif
37 let g:colors_name = "adrian"
38 "lyj---//2006-03-15 @ 23:16 By Lyj---------------
39 hi User1 guibg=darkblue guifg=yellow
40 hi User2 guibg=darkblue guifg=lightblue
41 hi User3 guibg=darkblue guifg=red
42 hi User4 guibg=darkblue guifg=cyan
43 hi User5 guibg=darkblue guifg=lightgreen
44 "endlyjset background=light
46 " Normal is for the normal (unhighlighted) text and background.
47 " NonText is below the last line (~ lines).
48 highlight Normal                  guibg=Black      guifg=Green 
49 highlight Cursor                  guibg=Grey70     guifg=White
50 highlight NonText                 guibg=Grey80
51 highlight StatusLine     gui=bold guibg=DarkGrey   guifg=Orange
52 highlight StatusLineNC            guibg=DarkGrey   guifg=Orange
54 highlight Comment    term=bold      ctermfg=LightGrey                  guifg=#d1ddff
55 highlight Constant   term=underline ctermfg=White                      guifg=#ffa0a0
56 "highlight Number   term=underline ctermfg=Yellow                     guifg=Yellow
57 highlight Identifier term=underline ctermfg=Cyan                       guifg=#40ffff
58 highlight Statement  term=bold      ctermfg=Yellow           gui=bold  guifg=#ffff60
59 highlight PreProc    term=underline ctermfg=Blue                       guifg=#ff4500
60 highlight Type       term=underline ctermfg=DarkGrey         gui=bold  guifg=#7d96ff
61 highlight Special    term=bold      ctermfg=Magenta                    guifg=Orange
62 highlight Ignore                    ctermfg=black                      guifg=bg
63 highlight Error                     ctermfg=White      ctermbg=Red     guifg=White    guibg=Red
64 highlight Todo                      ctermfg=Blue       ctermbg=Yellow  guifg=Blue     guibg=Yellow
66 " Change the highlight of search matches (for use with :set hls).
67 highlight Search                    ctermfg=Black      ctermbg=Yellow  guifg=Black    guibg=Yellow  
69 " Change the highlight of visual highlight.
70 highlight Visual      cterm=NONE    ctermfg=Black      ctermbg=LightGrey  gui=NONE    guifg=Black guibg=Grey70
72 highlight Float                     ctermfg=Blue                       guifg=#88AAEE
73 highlight Exception                 ctermfg=Red        ctermbg=White   guifg=Red      guibg=White
74 highlight Typedef                   ctermfg=White      ctermbg=Blue    gui=bold       guifg=White guibg=Blue
75 highlight SpecialChar               ctermfg=Black      ctermbg=White   guifg=Black    guibg=White
76 highlight Delimiter                 ctermfg=White      ctermbg=Black   guifg=White    guibg=Black
77 highlight SpecialComment            ctermfg=Black      ctermbg=Green   guifg=Black    guibg=Green
79 " Common groups that link to default highlighting.
80 " You can specify other highlighting easily.
81 highlight link String          Constant
82 highlight link Character       Constant
83 highlight link Number          Constant
84 highlight link Boolean         Statement
85 "highlight link Float           Number
86 highlight link Function        Identifier
87 highlight link Conditional     Type
88 highlight link Repeat          Type
89 highlight link Label           Type
90 highlight link Operator        Type
91 highlight link Keyword         Type
92 "highlight link Exception       Type
93 highlight link Include         PreProc
94 highlight link Define          PreProc
95 highlight link Macro           PreProc
96 highlight link PreCondit       PreProc
97 highlight link StorageClass    Type
98 highlight link Structure       Type
99 "highlight link Typedef         Type
100 "highlight link SpecialChar     Special
101 highlight link Tag             Special
102 "highlight link Delimiter       Special
103 "highlight link SpecialComment  Special
104 highlight link Debug           Special