diff options
| author | jao <jao@gnu.org> | 2026-09-11 00:48:17 +0100 |
|---|---|---|
| committer | jao <jao@gnu.org> | 2026-09-11 00:48:17 +0100 |
| commit | 59013a27bdb3ddabef7a27616274db613ff67259 (patch) | |
| tree | 621541f774f073c63041c03b95ddfb4ef63c5bfe /init.el | |
| parent | 61b3373acccd156c808789dc32538e1ff905928e (diff) | |
| download | elibs-59013a27bdb3ddabef7a27616274db613ff67259.tar.gz elibs-59013a27bdb3ddabef7a27616274db613ff67259.tar.bz2 | |
fiddling with those two panes
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -653,7 +653,8 @@ (setq appt-display-format nil calendar-latitude 55.9533 calendar-longitude -3.1883 - calendar-left-margin 4 + calendar-left-margin 2 + calendar-month-width 30 calendar-location-name "Edinburgh, Scotland" calendar-mark-diary-entries-flag t calendar-week-start-day 1 ;; 0 sunday @@ -698,6 +699,15 @@ (defun jao-diary--select () (switch-to-buffer diary-fancy-buffer)) + (defun jao-calendar-hook () + (toggle-truncate-lines 1) + ;; (setq left-fringe-width 1) + ;; (setq right-fringe-width 1) + (setq fringe-indicator-alist '((truncation nil nil) (continuation nil nil)))) + + (add-hook 'calendar-mode-hook #'jao-calendar-hook) + (add-hook 'calendar-initial-window-hook #'calendar-scroll-left) + (add-hook 'diary-fancy-display-mode-hook #'jao-diary--select)) ;;;; persistent scratch |
