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
commit752a6b55b5acf3a6dc9aa2a173b6c7816b67869d (patch)
tree86aac83c98a7f7268941b94b22abca7a14246ff6 /color-theme-init.el
parent73b4be610f2be63e44a6fd75fc9a9891a560569f (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)