dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit c3e64ca365e181fe9998db241ff9348ea880b1e9
parent 7772f8c72ad7cba202f52645a782654a543f6c8e
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Mon, 26 Jul 2021 10:18:36 +0200

emacs: fix modeline (display-time-mode is a function!)

Diffstat:
Memacs/config.org | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -287,8 +287,8 @@ I want to show the time and date in the modeline: #+begin_src emacs-lisp (setq display-time-day-and-date t ; also the date display-time-default-load-average nil ; don't show load average - display-time-format "%I:%M%p%e %b" ; "HR:MIN(AM/PM) day-of-month Month" - display-time-mode 1) ; enable time mode + display-time-format "%I:%M%p %e %b") ; "HR:MIN(AM/PM) day-of-month Month" + (display-time-mode 1) ; enable time mode #+end_src I want to show the current function: