Show doom-modeline only on linux

This commit is contained in:
Marcus Kammer 2023-07-20 17:16:32 +02:00
parent a35c39f2e1
commit eee7e5a9c8
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -14,9 +14,10 @@
;; doom-themes-enable-italic t) ; if nil, italics is universally disabled
;; (load-theme 'doom-one t))
;; (use-package doom-modeline
;; :init (doom-modeline-mode 1)
;; :custom (doom-modeline-height 33))
(when (eq system-type 'gnu/linux)
(use-package doom-modeline
:init (doom-modeline-mode 1)
:custom (doom-modeline-height 33)))
(use-package helpful
:commands (helpful-callable helpful-variable helpful-command helpful-key)