all repos — archive/dotfiles @ 018c54df934153322f82b1c1c500dce00c83979f

Superseded by nixfiles

Emacs: move calendar setup to new ‘Dates & Times’ section
Alan Pearce alan@alanpearce.co.uk
Tue, 28 May 2013 21:01:30 +0100
commit

018c54df934153322f82b1c1c500dce00c83979f

parent

833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2

1 files changed, 8 insertions(+), 6 deletions(-)

jump to
M emacs/init.elemacs/init.el
@@ -298,6 +298,14 @@ :bind (("C-<tab>" . company-complete))   :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
@@ -532,12 +540,6 @@ :ensure t   :mode (("\\.lua\\'" . lua-mode)))
 
 ;;;; 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)