diff options
| author | Luke Hoersten <[email protected]> | 2011-10-03 09:55:09 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2011-10-03 09:55:09 -0500 |
| commit | 66bfb4e2e2f5a204a9f8e7404fabcb57e366fcd4 (patch) | |
| tree | 9da9046d3c8556914952ed49b1863c6769b5143d /color-theme-init.el | |
| parent | 374c5b92a1ebae65cd1545a7126d6954b93d51bc (diff) | |
Split out some init files.
Diffstat (limited to 'color-theme-init.el')
| -rw-r--r-- | color-theme-init.el | 21 |
1 files changed, 21 insertions, 0 deletions
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 <[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) |
