[Emacs] Add time display to Emacs’ modeline

This commit is contained in:
Lucien Cartier-Tilet 2020-08-30 18:51:56 +02:00
parent 7388fccc27
commit ff274510e5
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 18 additions and 0 deletions

View File

@ -3355,6 +3355,24 @@
(global-prettify-symbols-mode 1)
#+END_SRC
*** Time in modeline
:PROPERTIES:
:CUSTOM_ID: User_Configuration-Visual_configuration-Time_in_modeline-61b40ef2
:END:
I like to see what time it is in Emacs. It may be sometimes redundant with
my window managers clock, but the latter is not always visible; I might
have, for instance, Emacs in fullscreen. First, I need to tell Emacs a few
things: I want a 24h format, as well as the current date.
#+BEGIN_SRC emacs-lisp
(setq display-time-24hr-format t
display-time-day-and-date t)
#+END_SRC
Now that Emacs knows how to display time, lets ask it to.
#+BEGIN_SRC emacs-lisp
(display-time-mode 1)
#+END_SRC
*** ~which-key~ replacements
:PROPERTIES:
:CUSTOM_ID: User_Configuration-Visual_configuration-which-key_replacements-cccc5202