dotfiles

view .vim/colors/meillo_self.vim @ 0:a5f356e3bebc

inital checkin
author meillo@marmaro.de
date Sat, 14 Apr 2007 12:05:55 +0200
parents
children ed27560e11be
line source
1 " Vim color file
2 " Maintainer: markus schnalke <meillo@marmaro.de>
3 " Last Change: 2007-02-22
4 "
5 " This is meillo's own color scheme.
6 "
9 " First remove all existing highlighting.
10 set background=light
11 hi clear
12 if exists("syntax_on")
13 syntax reset
14 endif
17 " my code from here
18 let colors_name = "meillo_self"
24 "## GUI ###################################################################
25 " Globals
27 hi Normal guifg=#000000 guibg=#d8d0c8 " Standard-Farben
29 hi LineNr guifg=#666666 guibg=#aaaaaa " Bereich der Zeilennummern
31 hi FoldColumn guifg=#cccccc guibg=#666666 " Bereich der Faltungen
32 hi Folded guifg=#000000 guibg=#e3c1a5 " Gefaltete Zeile
34 hi StatusLine gui=bold guifg=#ffffff guibg=#000000 " Statusleiste des aktiven Frames
35 hi StatusLineNC gui=bold guifg=#666666 guibg=#333333 " Statusleiste der anderen Frames
37 hi SpecialKey guifg=Blue
38 hi NonText guifg=#000000 " ~ and @ at the end of the file
39 hi Directory guifg=Blue
40 hi ErrorMsg gui=bold guifg=White guibg=Red
42 hi IncSearch gui=reverse " Waehrend der Suchbegriffseingabe
43 hi Search guibg=#ffeeaa " Abgeschlossene Suche
45 hi MoreMsg gui=bold guifg=SeaGreen
46 hi ModeMsg gui=bold
47 hi Question gui=bold guifg=SeaGreen
49 hi VertSplit gui=bold guifg=#000000 guibg=#000000
51 hi Title gui=bold guifg=DeepPink3
52 hi Visual guifg=#666666 guibg=#eeeedd " visual-Markierung
53 hi VisualNOS gui=bold,underline
54 hi WarningMsg gui=bold guifg=Red
55 hi WildMenu guifg=Black guibg=Yellow
57 hi DiffAdd guibg=White
58 hi DiffChange guibg=#edb5cd
59 hi DiffDelete gui=bold guifg=#6666ff guibg=#f6e8d0
60 hi DiffText gui=bold guibg=#ff8060
62 hi Cursor guifg=bg guibg=fg " der char unter dem Cursor
63 hi CursorLine guibg=#cccccc " the line that the cursor is
64 hi lCursor guifg=bg guibg=fg "??
66 hi MatchParen guibg=#aacc00
68 hi Pmenu guifg=#aaaaaa guibg=#333333
69 hi PmenuSel gui=bold guifg=#cccccc guibg=#666666
71 " syntax
72 hi Comment guifg=#008000
73 hi Constant guifg=#800000
74 hi Special gui=bold guifg=#000000 " php-tags, Sonderzeichen, Klammern
75 hi Identifier guifg=#000080
76 hi Statement gui=bold guifg=#000080 " reservierte Worte
77 hi PreProc guifg=#800000
78 hi Type gui=none guifg=#0000aa " attribute (z.B. style, title, name)
79 hi Igrore guifg=bg
80 hi Error gui=bold guifg=#ffffff guibg=#ff0000
81 hi Todo guifg=#000000 guibg=#eecc00
87 "## COLOR-TERM ##########################################################
89 " Globals
90 hi FoldColumn ctermfg=0 ctermbg=0 cterm=bold
91 hi Folded ctermfg=0 ctermbg=0 cterm=bold
92 hi LineNr ctermfg=0 ctermbg=0 cterm=bold
94 hi StatusLine cterm=reverse
95 hi StatusLineNC ctermfg=0 ctermbg=7 cterm=bold,reverse
96 hi VertSplit ctermfg=0 ctermbg=0 cterm=bold
98 hi SpecialKey ctermfg=4
99 hi NonText ctermfg=4 cterm=bold
100 hi Directory ctermfg=4
101 hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
102 hi IncSearch cterm=reverse
103 hi Search ctermbg=3
104 hi MoreMsg ctermfg=2
105 hi ModeMsg cterm=bold
106 hi Question ctermfg=2
107 hi Title ctermfg=5
109 hi Visual cterm=reverse
110 hi VisualNOS cterm=bold,underline
112 hi WarningMsg ctermfg=1
114 hi WildMenu ctermfg=0 ctermbg=7
116 hi DiffAdd ctermbg=4
117 hi DiffChange ctermbg=5
118 hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
119 hi DiffText cterm=bold ctermbg=1
122 " syntax
123 hi Comment cterm=bold ctermfg=2
124 hi Constant ctermfg=1
125 hi Special ctermfg=5
126 hi Identifier cterm=bold ctermfg=4
127 hi Statement ctermfg=3
128 hi PreProc ctermfg=7
129 hi Type ctermfg=6
130 hi Ignore cterm=bold ctermfg=7
131 hi Error cterm=bold ctermfg=7 ctermbg=1
132 hi Todo ctermfg=0 ctermbg=3
134 " 0 = black
135 " 1 = red
136 " 2 = green
137 " 3 = yellow
138 " 4 = blue
139 " 5 = magenta
140 " 6 = cyan
141 " 7 = white
148 "## TERM ##################################################################
150 " Globals
151 hi LineNr term=underline
152 hi FoldColumn term=standout
153 hi Folded term=standout
154 hi StatusLine term=bold,reverse
155 hi StatusLineNC term=reverse
156 hi SpecialKey term=bold
157 hi NonText term=bold
158 hi Directory term=bold
159 hi ErrorMsg term=standout
160 hi IncSearch term=reverse
161 hi Search term=reverse
162 hi MoreMsg term=bold
163 hi ModeMsg term=bold
164 hi Question term=standout
165 hi VertSplit term=reverse
166 hi Title term=bold
167 hi Visual term=reverse
168 hi VisualNOS term=bold,underline
169 hi WarningMsg358878 term=standout
170 hi WildMenu term=standout
171 hi DiffAdd term=bold
172 hi DiffChange term=bold
173 hi DiffDelete term=bold
174 hi DiffText term=reverse
177 " syntax
178 hi Comment term=bold
179 hi Constant term=underline
180 hi Special term=bold
181 hi Identifier term=underline
182 hi Statement term=bold
183 hi PreProc term=underline
184 hi Type term=underline
185 " hi Ignore
186 hi Error term=reverse
187 hi Todo term=standout
199 "" Set 'background' back to the default. The value can't always be estimated
200 "" and is then guessed.
201 "hi clear Normal
202 "set bg&
203 "" Remove all existing highlighting and set the defaults.
204 "hi clear
205 "" Load the syntax highlighting defaults, if it's enabled.
206 "if exists("syntax_on")
207 " syntax reset
208 "endif
209 "" vim: sw=2