summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el
index e3ce03d..ff3b41c 100644
--- a/init.el
+++ b/init.el
@@ -162,6 +162,11 @@
(when (eq major-mode 'org-mode)
(org-show-context))))
+ (advice-add
+ 'org-eval-in-calendar :around
+ (lambda (f form &rest _) (funcall f form 'keepdate))
+ '((name . "always-keepdate")))
+
(bind-keys :map org-mode-map
("C-c l" . org-goto)
("C-c m" . km/org-prefix-map)