Merge pull request #2877 from HaoZeke/loadConditions

Configure org-roam completion backend
This commit is contained in:
Henrik Lissner
2020-04-10 23:35:13 -04:00
committed by GitHub

View File

@ -35,7 +35,12 @@
:config :config
(setq org-roam-directory (expand-file-name (or org-roam-directory "") (setq org-roam-directory (expand-file-name (or org-roam-directory "")
org-directory) org-directory)
org-roam-verbose nil)) ; https://youtu.be/fn4jIlFwuLU org-roam-verbose nil ; https://youtu.be/fn4jIlFwuLU
org-roam-completion-system
(cond ((featurep! :completion helm) 'helm)
((featurep! :completion ivy) 'ivy)
((featurep! :completion ido) 'ido)
('default))))
;; Since the org module lazy loads org-protocol (waits until an org URL is ;; Since the org module lazy loads org-protocol (waits until an org URL is