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
- Host: GitHub
- URL: https://github.com/honmaple/emacs-maple-line
- Owner: honmaple
- License: gpl-3.0
- Created: 2019-06-03T18:26:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T15:58:09.000Z (about 6 years ago)
- Last Synced: 2025-02-14T17:43:05.334Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 289 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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