emacs: use a different font for the mode line

master
an 2020-06-02 06:58:48 -06:00
父節點 da80308847
當前提交 3b3bbf9c7d
共有 1 個檔案被更改,包括 12 行新增0 行删除

查看文件

@ -78,6 +78,18 @@
:ensure t
:config
(load-theme 'base16-atelier-cave t)
(dolist (face '(mode-line
mode-line-buffer-id
mode-line-emphasis
mode-line-highlight
mode-line-inactive
header-line
header-line-highlight))
(set-face-attribute face nil
:family "tewi2a"
:height 90
:weight 'normal
:width 'normal))
(set-face-attribute 'mode-line nil
:background "#0a0a0a"
:foreground "#92ebf0"))