diff options
-rw-r--r-- | init.d/main.org | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/init.d/main.org b/init.d/main.org index 89b159b..1bde2ab 100644 --- a/init.d/main.org +++ b/init.d/main.org @@ -2034,6 +2034,20 @@ this function I disable helm. (advice-add 'org-completing-read-no-i :around #'alex/run-without-helm) #+end_src + +*** org-id + +org-id can create, save and find global unique ids for linking to org +entries. I want to customize location of the file, that tracks the ids +globally and enable the use of org-ids for creating of links. + +#+begin_src emacs-lisp + (use-package org-id + :init + (setq org-id-locations-file (alex/cache-file "org-id-locations") + org-id-link-to-org-use-id 't)) +#+end_src + ** origami Sometimes I want to fold some code sections. There are several mode |