In Windows 7, add the following to the user .emacs file - likely under C:\Users\me
(add-to-list 'load-path "D:\programs\emacs-24.2\lisp\color-theme.el")In my Linux environment, I've simply added the following to my .emacs file:
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-calm-forest)))
(add-to-list 'load-path "/usr/share/emacs/site-lisp/emacs-goodies-el/")
(color-theme-initialize)
(color-theme-calm-forest)
No comments:
Post a Comment