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

时间:2010-05-26 15:47:40

标签: emacs

GNU Emacs 23.1.1     Fedora 13

我可以通过

选择颜色主题

M-x color-theme-select

我向下滚动并选择

clarity and beauty

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

(require 'color-theme)
(color-theme-ClarityandBeauty)

非常感谢任何建议,

2 个答案:

答案 0 :(得分:6)

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

(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.

答案 1 :(得分:4)

M-x color-theme-cl<Tab>告诉我名称为color-theme-clarity,这意味着您应该在.emacs中使用此名称:

(color-theme-clarity)