src.nth.io/

summaryrefslogtreecommitdiff
path: root/color-theme-init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2013-06-25 11:12:54 -0500
committerLuke Hoersten <[email protected]>2013-06-25 11:12:54 -0500
commit866d4b189f0d7af044d13ffd3730c2bd2d418264 (patch)
tree86aac83c98a7f7268941b94b22abca7a14246ff6 /color-theme-init.el
parent7faaf63cfbbf56e98e479fb77e2fa5add71ceaab (diff)
Tons more cleanups after emacs24 update.
Diffstat (limited to 'color-theme-init.el')
-rw-r--r--color-theme-init.el21
1 files changed, 0 insertions, 21 deletions
diff --git a/color-theme-init.el b/color-theme-init.el
deleted file mode 100644
index 53b238c..0000000
--- a/color-theme-init.el
+++ /dev/null
@@ -1,21 +0,0 @@
-;; ~/.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)