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

https://github.com/jjba23/modusregel

Clean and beautiful mode line for Emacs, with customization and performance in mind.
https://github.com/jjba23/modusregel

emacs lisp mode-line

Last synced: 5 months ago
JSON representation

Clean and beautiful mode line for Emacs, with customization and performance in mind.

Awesome Lists containing this project

README

        

* modusregel

/modusregel/ means mode line in the Dutch language.

#+begin_html


GNU Emacs

#+end_html

A clean, simple, elegant and beautiful mode line for Emacs, with customization and performance in mind.

#+begin_html


#+end_html

** Installing

This package is not (yet) available in popular Emacs repositories such as MELPA or ELPA.
An example installation with Elpaca:
#+begin_src emacs-lisp
(use-package modusregel
:ensure (:host github :repo "jjba23/modusregel" :branch "trunk")
:config
(setq-default mode-line-format modusregel-format))
#+end_src

*Note*: remember that mode-line-format is window-local, this means that to persist changes and set it globally, one must use ~setq-default~ and for tweaking and experimenting, change it temporarily to ~setq~.

#+begin_src emacs-lisp
;; window only
(setq mode-line-format modusregel-format)
;; global
(setq-default mode-line-format modusregel-format)
#+end_src