feat: hide-mode-line-mode

This commit is contained in:
Madeleine Sydney
2025-02-02 14:01:40 -07:00
parent 1f2e992418
commit d35b56a1ed

View File

@@ -11,6 +11,17 @@
:config
(popper-mode 1))
;; An optional dependency of `doom-popup'. As the name suggests, it provides a
;; minor mode that hides the mode-line. `doom-popup' will automatically enable
;; it in popup windowss.
(use-package hide-mode-line
:commands hide-mode-line-mode
:preface
;; `doom-popup' tests (boundp 'hide-mode-line-mode) before it tries enabling
;; or disabling the mode. We must define this because `hide-mode-line' does
;; not autoload it.
(defvar hide-mode-line-mode nil))
(use-package doom-popup
:straight (:type git
:host gitlab