color-theme-init.el
author Luke Hoersten <Luke@Hoersten.org>
Mon, 24 Jun 2013 21:39:26 -0500
changeset 55 d4adcd3d5ef9
parent 44 6e66ab8d9185
permissions -rw-r--r--
Updated to emacs24 with package management and load-theme

;; ~/.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)