diff options
author | Alan Pearce | 2013-05-28 21:01:30 +0100 |
---|---|---|
committer | Alan Pearce | 2013-05-28 21:01:30 +0100 |
commit | 018c54df934153322f82b1c1c500dce00c83979f (patch) | |
tree | 628d14cded6f126baa252483344260589da3f70a | |
parent | 833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2 (diff) | |
download | nixfiles-018c54df934153322f82b1c1c500dce00c83979f.tar.lz nixfiles-018c54df934153322f82b1c1c500dce00c83979f.tar.zst nixfiles-018c54df934153322f82b1c1c500dce00c83979f.zip |
Emacs: move calendar setup to new ‘Dates & Times’ section
-rw-r--r-- | emacs/init.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el index 502a1ec2..30b4e6b6 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -298,6 +298,14 @@ Values: `desktop', `server', `laptop'") :init (progn (add-hook 'prog-mode-hook #'company-mode))) +;;;; Dates & Times + +(use-package calendar + :defer t + :config (progn + (setq calendar-week-start-day 1) + (calendar-set-date-style 'iso))) + ;;;; Directory browsing (use-package dired :defer t @@ -533,12 +541,6 @@ Values: `desktop', `server', `laptop'") ;;;; Planning -(use-package calendar - :defer t - :config (progn - (setq calendar-week-start-day 1) - (calendar-set-date-style 'iso))) - (use-package org :bind (("C-c C-a" . org-agenda-list) ("C-c a" . org-agenda) |