Emacs: move calendar setup to new ‘Dates & Times’ section
Alan Pearce alan@alanpearce.co.uk
Tue, 28 May 2013 21:01:30 +0100
1 files changed, 8 insertions(+), 6 deletions(-)
jump to
M emacs/init.el → emacs/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)