From efa0f21f7df60db447e4eae318f8cf6e3099a832 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 9 Dec 2015 15:34:31 -0800 Subject: [emacs] Display time and date in status bar. When Emacs is running in full screen, I find it convenient to have the date and the time in the status bar, like in `tmux`. --- emacs.d/inits/00_ui.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index 61188e4..c5d1b78 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -29,6 +29,11 @@ (global-whitespace-mode 1) (setq whitespace-style '(face trailing tabs tab-mark)) +;; I want to see the time and date in the status bar +(setq display-time-day-and-date t + display-time-24hr-format t) +(display-time) + ;; leuven-theme (use-package leuven-theme :config -- cgit 1.4.1