GNU Emacs的選擇顏色主題23.1.1 Fedora 13的在的.emacs配置
我可以通過
M-x color-theme-select
我向下滾動選擇的顏色主題,然後選擇
clarity and beauty
這工作正常。但是,在我的配置中,我不確定如何選擇此選項。這是我的,但不起作用。
(require 'color-theme)
(color-theme-ClarityandBeauty)
非常感謝您的任何建議,
GNU Emacs的選擇顏色主題23.1.1 Fedora 13的在的.emacs配置
我可以通過
M-x color-theme-select
我向下滾動選擇的顏色主題,然後選擇
clarity and beauty
這工作正常。但是,在我的配置中,我不確定如何選擇此選項。這是我的,但不起作用。
(require 'color-theme)
(color-theme-ClarityandBeauty)
非常感謝您的任何建議,
M-x color-theme-cl<Tab>
顯示我的名字是color-theme-clarity
,這意味着你應該在你的.emacs有這樣的:
(color-theme-clarity)
這是我的配置有(來自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.
您好,我需要在顏色主題清晰之前添加此行。 (顏色主題初始化)。謝謝。問題解決了。 – ant2009 2010-05-26 16:42:28