/emacs-maple-line

emacs hide mode line of every buffer but with single maple line

Primary LanguageEmacs LispGNU General Public License v3.0GPL-3.0

emacs-maple-line

screenshots

https://github.com/honmaple/emacs-maple-line/blob/master/screenshot/example.png https://github.com/honmaple/emacs-maple-line/blob/master/screenshot/example1.png

How to use

git clone https://github.com/honmaple/emacs-maple-line ~/.emacs.d/site-lisp/maple-line
(use-package maple-line
  :ensure nil
  :hook (after-init . maple-line-mode))
  :config
  (setq maple-line-display-alist '((side . bottom)
                                    (slot . 0)
                                    (window-height . 1)))
(use-package maple-line-hide
  :ensure nil
  :hook (after-init . global-maple-line-hide-mode)
  :config
  (setq maple-line-hide-underline t
        maple-line-hide-underline-color "red"
        maple-line-hide-ignore '("*scratch*" "^magit" python-mode)))

(use-package maple-line-hide
  :ensure nil
  :hook (prog-mode . maple-line-hide-mode))