我正在尝试根据http://david.rothlis.net/emacs/customize_colors.html在 emacs 23 中获得日晒颜色主题。我已将所有文件夹和文件放在 ~/.emacs.d 中。然后我补充说:
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0"')
(add-to-list 'load-path "~/.emacs.d/emacs-color-theme-solarized-master"')
(require 'color-theme)
(require 'color-theme-solarized)
到我的 .emacs 文件。然而,这给了我以下错误:
Warning (initialization): An error occurred while loading `/home/brain/.emacs':
Invalid read syntax: )
调试多数民众赞成在:
Debugger entered--Lisp error: (invalid-read-syntax ")")
eval-buffer(#<buffer *load*> nil "/home/brain/.emacs" nil t) ; Reading at buffer position 80
load-with-code-conversion("/home/brain/.emacs" "/home/brain/.emacs" t t)
load("~/.emacs" t t)
#[nil "\205\264
我已经做了很长时间了,我似乎无法自己找到正确的方法来做到这一点,在http://www.gnu.org/software/emacs/manual/html_node/emacs/Init- Syntax.html#Init-Syntax,在 SO 或其他地方。我对 Linux 很陌生,尽管我认为这不是原因。任何帮助是极大的赞赏。谢谢。
PS这就是我的整个 .emacs 的样子:
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 83 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))))
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0"')
(add-to-list 'load-path "~/.emacs.d/emacs-color-theme-solarized-master"')
(require 'color-theme)
(require 'color-theme-solarized)