这两款主题分别是:
color-theme-arjen : http://github.com/credmp/color-theme-arjen/tree/master
color-theme-zenburn : http://github.com/credmp/color-theme-zenburn/tree/master
在Emacs中配置主题很简单,把这两个.el包所在的目录添加到你的load-path里,然后在.emacs添加类似的句子:
;;choose the color theme
(add-to-list ‘load-path “~/emacs/site-lisp/color-theme”)
(load-file “~/emacs/site-lisp/color-theme/master_zenburn.el”)
(load-file “~/emacs/site-lisp/color-theme/master_color-theme-arjen.el”)
(require ‘color-theme)
;(color-theme-gnome2)
;(color-theme-zenburn)
(color-theme-arjen)
这样,你的Emacs一启动,就会自动启用color-theme-arjen主题。该主题的效果如下图所示:

当然,你可以在后面添加更多的主题,你也可以在Emacs中选择性地启动某个主题。比如说,你用arjen这个主题用得不爽了,马上就可以用命令M-x color-theme-zenburn启动zenburn主题。zenburn主题的效果如下图所示:

嗯,我更喜欢arjen这个主题。