From c0eefbbca85551c48868f12ebcfbdb7aed5b8170 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 7 Apr 2022 19:56:33 +0200 Subject: [PATCH] Fix some org-id settings --- config.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.org b/config.org index 747e29c..9ce183d 100644 --- a/config.org +++ b/config.org @@ -435,6 +435,14 @@ it to the list: ** Doom specific +Doom makes some changes to org-id behaviour which I don't like / think are necessary. + +#+begin_src emacs-lisp +(after! org + (setq org-id-locations-file (expand-file-name "~/.config/emacs/.org-id-locations")) + (setq org-id-locations-file-relative nil)) +#+end_src + Doom replaces the default tab behavior on headings, this restores the default one. Taken from [[https://github.com/hlissner/doom-emacs/tree/develop/modules/lang/org#hacks][here]].