我在使用Emacs for OSX的.emacs中具有以下内容:
(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 (:stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :family "Inconsolata")))))
设定字型
如果在图形环境中运行Emacs,最简单的方法是使用菜单设置字体。从菜单中使用“选项->设置默认字体...”。
现在,您还没有完成操作,因为您只是临时更改了字体。我知道的最简单的方法是使用自定义模式。
M-x customize-face RET default RET
现在更改您想要更改的选项(如果有)。如果您已经使用菜单更改了字体,则应该在此处看到所做的更改。
保存到您的初始化文件
通过以下方式保存以备将来使用:
要么
C-x C-s
而在自定义缓冲区中 将 应该做同样的事情,但并不总是有效,例如(set-default-font "Inconsolata")
如果其他所有方法都失败了...
您可能对设置字体页面感到幸运。