diff .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
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/.elisp/settings/90.colors.el
@@ -0,0 +1,17 @@
+;; custom color scheme
+(setq default-frame-alist
+      '((width . 80)
+        (cursor-color . "white")
+        (cursor-type . box)
+        (foreground-color . "white")
+        (background-color . "black")))
+
+;; tell ipython we have a dark background
+(setq py-python-command-args (quote ("-i")))
+
+(set-face-foreground 'magit-diff-add "DarkGreen")
+(set-face-background 'magit-item-highlight "grey19")
+
+(set-face-background 'whitespace-line "red4")
+(set-face-background 'whitespace-tab "tan")
+(set-face-background 'whitespace-trailing "red")