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.
- Host: GitHub
- URL: https://github.com/jjba23/modusregel
- Owner: jjba23
- License: gpl-3.0
- Created: 2024-09-23T11:43:53.000Z (7 months ago)
- Default Branch: trunk
- Last Pushed: 2024-09-26T12:35:15.000Z (7 months ago)
- Last Synced: 2024-11-27T09:34:00.940Z (5 months ago)
- Topics: emacs, lisp, mode-line
- Language: Emacs Lisp
- Homepage:
- Size: 159 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: COPYING
Awesome Lists containing this project
README
* modusregel
/modusregel/ means mode line in the Dutch language.
#+begin_html
![]()
#+end_htmlA 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