0

我正在尝试根据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)
4

1 回答 1

1

你为什么要引用整件事?

(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0"')
(add-to-list'load-path "~/.emacs.d/emacs-color-theme-solarized-master"')

你不想要最后一个'

您只需要引用 load-path 以便将其传递到 add-to-list 而不被评估。

尝试使用这个:

(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")
(add-to-list 'load-path "~/.emacs.d/emacs-color-theme-solarized-master")

有关更多信息,请参阅:
添加到列表
加载路径

除了上述内容之外,您可能还需要将以下内容添加到您的 init.el 中,将其放在 ` (require 'color-theme) ' 之后的某个位置

(eval-after-load "color-theme"
  '(progn
     (color-theme-initialize)
     ;; Load solarized at startup
     (color-theme-solarized)))

上面的代码来自颜色主题网站,我的声誉不够高,无法发布更多链接,否则我会包含它。

于 2013-10-24T14:55:31.750 回答