An open API service indexing awesome lists of open source software.

https://github.com/honmaple/emacs-maple-line

emacs hide mode line of every buffer but with single maple line
https://github.com/honmaple/emacs-maple-line

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

* 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
#+begin_src bash
git clone https://github.com/honmaple/emacs-maple-line ~/.emacs.d/site-lisp/maple-line
#+end_src

#+begin_src elisp
(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)))
#+end_src

#+begin_src elisp
(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))
#+end_src