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"))