我想在群集中的emacs中使用DejaVu字体 - 而且我无法在系统范围内安装字体。我把字体(它们是免费的)放在~/.fonts
中。我想使用DejaVuSansMono.ttf
。通常我只是输入.emacs:
(custom-set-variables
'(default ((t (:inherit nil :stipple nil :background "#ffffb1" :foreground "#141312" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 173 :width normal :foundry "monotype" :family "DejaVu Sans Mono")))))
但是现在emacs找不到字体了!
所以我的问题是 - 如何帮助emacs找到字体?如何指定字体的路径?
答案 0 :(得分:0)
看起来bdf-directory-list
会修复它。
(setq bdf-directory-list '("/path/to/fonts"))
我现在不能尝试 - 稍后会回来。