--- a/colors/badwolf.vim Mon Apr 16 09:47:12 2012 +0200
+++ b/colors/badwolf.vim Sat Jun 02 17:12:25 2012 -0400
@@ -453,6 +453,7 @@
" Tag names
call s:HL('htmlTagName', 'coffee', '', 'bold')
call s:HL('htmlSpecialTagName', 'coffee', '', 'bold')
+call s:HL('htmlSpecialChar', 'lime', '', 'none')
" Attributes
call s:HL('htmlArg', 'coffee', '', 'none')
@@ -522,17 +523,24 @@
call s:HL('markdownCodeBlock', 'dirtyblonde', '', 'none')
" }}}
+" MySQL {{{
+
+call s:HL('mysqlSpecial', 'dress', '', 'bold')
+
+" }}}
" Python {{{
hi def link pythonOperator Operator
-call s:HL('pythonBuiltin', 'dress')
-call s:HL('pythonBuiltinObj', 'dress')
+call s:HL('pythonBuiltin', 'dress')
+call s:HL('pythonBuiltinObj', 'dress')
call s:HL('pythonBuiltinFunc', 'dress')
-call s:HL('pythonEscape', 'dress')
-call s:HL('pythonException', 'lime', '', 'bold')
-call s:HL('pythonExceptions', 'lime', '', 'none')
-call s:HL('pythonPrecondit', 'lime', '', 'none')
-call s:HL('pythonDecorator', 'taffy', '', 'none')
+call s:HL('pythonEscape', 'dress')
+call s:HL('pythonException', 'lime', '', 'bold')
+call s:HL('pythonExceptions', 'lime', '', 'none')
+call s:HL('pythonPrecondit', 'lime', '', 'none')
+call s:HL('pythonDecorator', 'taffy', '', 'none')
+call s:HL('pythonRun', 'gravel', '', 'bold')
+call s:HL('pythonCoding', 'gravel', '', 'bold')
" }}}
" SLIMV {{{
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/contrib/badwolf.muttrc Sat Jun 02 17:12:25 2012 -0400
@@ -0,0 +1,44 @@
+color normal color15 color233
+color error brightcolor15 color196
+color indicator color15 color235
+color status brightcolor39 color233
+color markers color142 color233
+
+color hdrdefault color245 color233
+color header brightcolor214 color233 "^(Subject): "
+color signature color243 color233
+
+color body color137 color233 [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
+color body color137 color233 ((https?|ftp)://|www)+[\-\.\;@,/%~_:?&=\#a-zA-Z0-9+]+
+color bold brightcolor15 color233
+color search brightcolor16 color221
+
+color quoted color243 color233
+color quoted1 color211 color233
+color quoted2 color222 color233
+color quoted3 color214 color233
+color quoted4 color154 color233
+
+color tilde color240 color233
+color tree color240 color233
+color attachment brightcolor211 color233
+
+# http://www.mutt.org/doc/manual/manual-4.html#ss4.2
+# color index color241 color233 ~A
+# color index color241 color233 ~Q
+# color index color243 color233 ~P
+color index color221 color233 ~N
+color index brightcolor211 color233 ~F
+color index brightcolor39 color233 ~T
+color index color243 color233 ~Q
+color index color196 color233 ~D
+
+# Colorize inline diffs, really helpful for LKML or other mailing lists where
+# mails frequently include patches.
+color body brightcolor15 color233 '^diff .*'
+color body brightcolor15 color233 '^[Ii]{1}ndex .*'
+color body brightcolor15 color233 '^=+$'
+color body brightcolor15 color233 '^(---|\+\+\+) .*'
+color body brightcolor15 color233 '^@@ .*'
+color body color121 color233 '^\+([^\+].*)?$'
+color body color211 color233 '^-([^-].*)?$'