Emacs Font Config

在 Emacs 中配置字体很一个很难受的事情, 不过我今天在偶然之间发现了一个比较好的中英文字体组合:

  • 西文字母: JetBrainsMonoNL Nerd Font
  • 中文汉字: Maple Mono NL NF CN

他们在 Org-mode 中的样式大致如下:

font example

由于我显示器的分辨率只有 1080P, 中文字体选择了 auto hint 版本, 果然,渲染效果好了很多. 字体的配置大致如下:

1
2
3
4
5
6
(set-face-attribute 'default nil
:font "JetBrainsMonoNL Nerd Font-15"
:slant 'normal
:weight 'medium)
(dolist (script '(kana han cjk-misc bopomofo))
(set-fontset-font t script "Maple Mono NL NF CN"))

Emacs Font Config
https://zongpingding.github.io/2026/03/05/emacs_font/
Author
Eureka
Posted on
March 5, 2026
Licensed under