From b505d9a3160fbac6eff75b4b72afdd6a7e648e48 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 28 Apr 2015 13:42:12 -0700 Subject: [PATCH] Allow symlinks for org files. --- dotfiles/emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 48e1eff6..e97b1231 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -835,7 +835,7 @@ the same tree node, and the headline of the tree node in the Org-mode file." (defvar org-capture-templates nil)) (setq org-agenda-files (append org-agenda-files - (--filter (file-exists-p it) + (--filter (or (file-symlink-p it) (file-exists-p it)) `(,org-gtd-file ,org-habits-file ,@(org-projectile:todo-files) ,org-calendar-file))))