summaryrefslogtreecommitdiff
path: root/emacs/.doom.d/config.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.doom.d/config.el')
-rw-r--r--emacs/.doom.d/config.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/emacs/.doom.d/config.el b/emacs/.doom.d/config.el
index beb67e8..1de49dc 100644
--- a/emacs/.doom.d/config.el
+++ b/emacs/.doom.d/config.el
@@ -102,10 +102,12 @@
(:output-dir . "static/data/"))
org-babel-default-header-args))
+ (setq org-agenda-archives-mode nil)
(defun kj/find-agenda-files-containing-tag (tag)
- (let ((candidates (org-agenda-files nil 'ifmode))
- (matcher (cdr (org-make-tags-matcher tag)))
- (files))
+ (let* ((org-agenda-archives-mode nil)
+ (candidates (org-agenda-files nil 'ifmode))
+ (matcher (cdr (org-make-tags-matcher tag)))
+ (files))
(message "Results:")
(dolist (file candidates files)
(org-check-agenda-file file)
@@ -153,6 +155,7 @@
:publishing-directory ,kj/publish-directory
:publishing-function org-html-publish-to-html
+ :with-broken-links t
:with-toc nil
:with-latex t
:with-drawers t