all repos — nixfiles @ 018c54df934153322f82b1c1c500dce00c83979f

System and user configuration, managed by nix and home-manager

Emacs: move calendar setup to new ‘Dates & Times’ section

Alan Pearce
commit

018c54df934153322f82b1c1c500dce00c83979f

parent

833cdbc654cc90cb9c922fe80a9d9dcfb635e6e2

1 file 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)