blob: 53b238c9c64d591d60b10660037ce8f8e458a057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
|