From 7ff4e55ffdc86450ccfa923f605cd8cb4a8cc1ef Mon Sep 17 00:00:00 2001 From: Jakub Date: Fri, 26 Sep 2025 18:19:39 +0800 Subject: [PATCH] Add calendar customisation --- userland/calendar-custom.el | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 userland/calendar-custom.el diff --git a/userland/calendar-custom.el b/userland/calendar-custom.el new file mode 100644 index 0000000..2ab329d --- /dev/null +++ b/userland/calendar-custom.el @@ -0,0 +1,31 @@ +;;; calendar-custom.el --- Calendar customisations -*- lexical-binding: t -*- + +;; This file is not part of GNU Emacs + +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + + +;;; Commentary: + +;; commentary + +;;; Code: + +(require 'calendar) + +(setq calendar-mark-holidays-flag t) + +(provide 'calendar-custom) + +;;; calendar-custom.el ends here