color-theme-init.el
changeset 44 6e66ab8d9185
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/color-theme-init.el	Mon Oct 03 09:55:09 2011 -0500
@@ -0,0 +1,21 @@
+;; ~/.emacs.d/color-theme-init.el
+;; Luke Hoersten <[email protected]>
+
+;;; color theme
+(if window-system
+   (progn
+     (require 'color-theme)
+
+     ;; solarized
+     (add-to-list 'load-path "~/.emacs.d/thirdparty/color-theme-solarized")
+     (require 'color-theme-solarized)
+     (color-theme-solarized-light)
+     ;; (color-theme-solarized-dark)
+
+     ;; twilight
+     ;; (load "color-theme-twilight")
+     ;; (color-theme-twilight)
+     ))
+
+(message "Loading color-theme-init...done")
+(provide 'color-theme-init)