diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-12-09 15:34:31 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-12-09 15:34:31 -0800 |
commit | efa0f21f7df60db447e4eae318f8cf6e3099a832 (patch) | |
tree | c5ddcf7a68ea6cea22b2318094d31201e1336203 | |
parent | [emacs] Change the font to "Droid Sans Mono" (diff) | |
download | emacs.d-efa0f21f7df60db447e4eae318f8cf6e3099a832.tar.gz |
[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`.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/00_ui.el | 5 |
1 files changed, 5 insertions, 0 deletions
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 |