如何在emacs中应用颜色方案(.el文件)?
我已经下载了zenburn.el,它是Emacs的颜色方案,但我不知道如何将它应用于emacs。我是emacs的初学者。 如何将我的.el文件应用于emacs?我可以从我的.emacs文件中进行一些链接吗? 我在Linux Mint 8上使用emacs23。 现在我已经安装了彩色主题与 sudo apt-get install emacs-goodies-el 但是当我开始使用emacs时,我没有得到Zenburn,而当我在emacs中时没有ZenburnM-x color-theme-<TAB> <RETURN>。 这是我的.emacs (tool-bar-mode -1) (add-to-list 'load-path "/home/sanoj/zenburn.el") (require 'color-theme) (load 'zenburn) ;; requires that zenburn.el is in your load path (eval-after-load "color-theme" '(progn (color-theme-initialize) (color-theme-zenburn)))