dotfiles

view .vim/colors/meillo_self.vim @ 3:4c1ead2dc501

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