comparison .elisp/settings/90.colors.el @ 217:e4842709368a

emacs: move colors to their own file and migrate to whitespace from wspace
author Augie Fackler <durin42@gmail.com>
date Sat, 14 Aug 2010 20:42:58 -0500
parents
children 198b3cb99677
comparison
equal deleted inserted replaced
216:a01712792c2b 217:e4842709368a
1 ;; custom color scheme
2 (setq default-frame-alist
3 '((width . 80)
4 (cursor-color . "white")
5 (cursor-type . box)
6 (foreground-color . "white")
7 (background-color . "black")))
8
9 ;; tell ipython we have a dark background
10 (setq py-python-command-args (quote ("-i")))
11
12 (set-face-foreground 'magit-diff-add "DarkGreen")
13 (set-face-background 'magit-item-highlight "grey19")
14
15 (set-face-background 'whitespace-line "red4")
16 (set-face-background 'whitespace-tab "tan")
17 (set-face-background 'whitespace-trailing "red")