在.emacs配置中选择颜色主题

ant*_*009 2 emacs

GNU Emacs 23.1.1 Fedora 13

我可以选择颜色主题

M-x color-theme-select

我向下滚动并选择

clarity and beauty

这没问题.但是,在我的配置中,我不知道如何选择它.这就是我所拥有的,但不起作用.

(require 'color-theme)
(color-theme-ClarityandBeauty)
Run Code Online (Sandbox Code Playgroud)

非常感谢任何建议,

kjf*_*tch 6

这是我的配置(来自color-theme 文档):

(add-to-list 'load-path "C:/opt/elisp/color-theme") ;; The path to color-theme.el
(require 'color-theme)
(eval-after-load "color-theme"
  '(progn
     (color-theme-initialize)
     (color-theme-subtle-hacker)))  ;; This is the theme you want to use.
Run Code Online (Sandbox Code Playgroud)