emacs: use a different font for the mode line

master
an 2020-06-02 06:58:48 -06:00
commit 3b3bbf9c7d
1 arquivos alterados com 12 adições e 0 exclusões

Ver arquivo

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