summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs9
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs b/emacs
index c57fccc..056d6dc 100644
--- a/emacs
+++ b/emacs
@@ -12,10 +12,11 @@
(nconc load-path orig-load-path))
;; load own color theme
-(require 'color-themes-alex)
-(if (not window-system)
- (color-theme-alex-console)
- (color-theme-alex))
+(when (require 'color-theme nil 'noerror)
+ (color-theme-initialize)
+ (if (not window-system)
+ (color-theme-alex-console)
+ (color-theme-alex)))
;; user settings
(setq user-full-name "Alexander Sulfrian"