From b7253b93d3cb62e0bd9520e624320747d7696759 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Fri, 8 Mar 2024 18:43:11 -0500 Subject: [PATCH] Set calendar date style to ISO --- config.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index d1bcf1e..902458e 100644 --- a/config.org +++ b/config.org @@ -2295,7 +2295,9 @@ The calendar's main purpose for me is to give a better view of the [[*Agenda][Or #+begin_src emacs-lisp (after! calendar ;; Start week on Monday - (setq calendar-week-start-day 1)) + (setq calendar-week-start-day 1) + ;; ISO date style + (calendar-set-date-style 'iso)) (after! calfw (setq cfw:org-face-agenda-item-foreground-color (doom-color 'yellow)))