3
  1. 在 Emacs 25 中忽略了旧的 ~/.emacs:

(custom-set-faces ;; custom-set-faces 是由 Custom 添加的。;; 如果你手动编辑它,你可能会搞砸,所以要小心。;; 你的 init 文件应该只包含一个这样的实例。; ; 如果有多个,它们将无法正常工作。'(默认 ((t (:background nil :family "Droid Sans Mono" :foundry "unknown" :slant normal :weight normal :height 164 :width normal) )))

  1. 菜单 > 设置默认字体,菜单 > 保存选项 - 重启后不保存所选字体。

总计,选项用完了。我在哪里可以找到有关如何在 Emacs 25 中执行此操作的文档?

4

2 回答 2

3

您可以在 init.el 设置文件中设置字体

(set-default-font "Inconsolata 12")

您还可以尝试以下方法:

 (set-face-attribute 'default nil
                :family "Inconsolata" :height 150 :weight 'normal)
于 2017-03-06T17:18:04.940 回答
1

这些似乎是 gconf 覆盖 emacs 自定义的问题。正如这里回答的那样。

只需将这些行放在您的.emacs (define-key special-event-map [config-changed-event] #'ignore)

于 2017-07-30T15:01:17.910 回答