Compare commits

..

2 Commits

Author SHA1 Message Date
826725cd99
Manually add NonGNU elpa archive
This has been added by default in Emacs 28.1, so it's resonable to also include
it in my list.
2022-05-15 17:13:51 +02:00
b8313453d4
Change default calendar time zone style to numeric
I do not know all time zone abbreviations, but I can handle numbers :)
2022-05-15 17:13:07 +02:00

View File

@ -46,7 +46,8 @@
'(("melpa" . "https://melpa.org/packages/") '(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/") ("gnu" . "https://elpa.gnu.org/packages/")
("melpa-stable" . "https://stable.melpa.org/packages/") ("melpa-stable" . "https://stable.melpa.org/packages/")
("org" . "https://orgmode.org/elpa/"))) ("org" . "https://orgmode.org/elpa/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")))
(when (< emacs-major-version 27) (when (< emacs-major-version 27)
;; Before Emacs 27.1, we had to do package initialization ourselves. In Emacs ;; Before Emacs 27.1, we had to do package initialization ourselves. In Emacs
@ -524,6 +525,7 @@
(use-package calender (use-package calender
:init (setq calendar-date-style 'iso :init (setq calendar-date-style 'iso
calendar-time-zone-style 'numeric
calendar-week-start-day 1 ; Monday calendar-week-start-day 1 ; Monday
calendar-bahai-all-holidays-flag nil calendar-bahai-all-holidays-flag nil
calendar-chinese-all-holidays-flag nil calendar-chinese-all-holidays-flag nil