diff options
author | noa | 2024-09-18 09:15:10 +0800 |
---|---|---|
committer | noa | 2024-09-18 09:15:10 +0800 |
commit | 2b1a9436e84efeaed2c5f68fca0e5dca7d159c4f (patch) | |
tree | ad02fb8b3960a149462fa452afef12deaf367cff | |
parent | e0ceb7a2f8e06dd268ba4600a3abe5cd150d9a59 (diff) |
Update calendar configuration
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/emacs/init.el b/emacs/init.el index d9c3c05..5d86c6c 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -70,7 +70,6 @@ ;; Update the calendar. We want weeks to start on a monday, the first day of the week. Holidays should be highlighted, and the date format should put the year first. (setopt calendar-week-start-day 1 - calendar-mark-holidays-flag t calendar-date-style 'iso) ;; Ensure the calendar always displays at the bottom of the screen, rather than wrapping weirdly and looking bad when it shows up in a side window. @@ -79,9 +78,6 @@ (display-buffer-in-side-window) (side . bottom))) -;; The default for this is eight, and i hoped that by setting it to nine there would never be a jump when there were extra weeks in a month and the calendar took up an extra line. It doesn't seem to have worked out that way, though. -(setopt calendar-minimum-window-height 9) - ;; This is my own version of fixed-pitch, which has some changes to it. No hooks are added by default. Updating the whitelist automatically applies the hooks. And there is no functionality for changing the cursor type. (use-package fixed-pitch) (setopt fixed-pitch-whitelist-hooks '(calendar-mode-hook |