blob: b212652896ecfed702fb7d2e35d85101f3dd6ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;; Elpa packages: doom-modeline all-the-icons
;; Run: all-the-icons-install-fonts
(use-package doom-modeline
:ensure t
:hook (after-init . doom-modeline-mode)
:config
(setq doom-modeline-height 1)
(set-face-attribute 'mode-line nil :family "Noto Sans" :height 150)
(set-face-attribute 'mode-line-inactive nil :family "Noto Sans" :height 150)
)
|