From 66bfb4e2e2f5a204a9f8e7404fabcb57e366fcd4 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Mon, 3 Oct 2011 09:55:09 -0500 Subject: Split out some init files. --- color-theme-init.el | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 color-theme-init.el (limited to 'color-theme-init.el') diff --git a/color-theme-init.el b/color-theme-init.el new file mode 100644 index 0000000..53b238c --- /dev/null +++ b/color-theme-init.el @@ -0,0 +1,21 @@ +;; ~/.emacs.d/color-theme-init.el +;; Luke Hoersten + +;;; 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) -- cgit v1.2.3