summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-05-28 21:01:30 +0100
committerAlan Pearce2013-05-28 21:01:30 +0100
commit018c54df934153322f82b1c1c500dce00c83979f (patch)
tree628d14cded6f126baa252483344260589da3f70a /emacs
parent833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2 (diff)
downloaddotfiles-018c54df934153322f82b1c1c500dce00c83979f.tar.lz
dotfiles-018c54df934153322f82b1c1c500dce00c83979f.tar.zst
dotfiles-018c54df934153322f82b1c1c500dce00c83979f.zip
Emacs: move calendar setup to new ‘Dates & Times’ section
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el14
1 files changed, 8 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 502a1ec..30b4e6b 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)