updating per @hlissner suggestion

This commit is contained in:
bdarcus 2020-04-23 14:46:13 -04:00 committed by GitHub
parent 1c9a39bf26
commit 7d38f503e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,14 @@
(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 'default) org-roam-completion-system
(cond ((featurep! :completion helm) 'helm)
((featurep! :completion ivy) 'ivy)
((featurep! :completion ido) 'ido)
('default))
org-roam-completion-fuzzy-match
(or (featurep! :completion helm +fuzzy)
(featurep! :completion ivy +fuzzy)))
;; HACK Hide the mode line in the org-roam buffer, since it serves no purpose. ;; HACK Hide the mode line in the org-roam buffer, since it serves no purpose.
;; This makes it easier to distinguish among other org buffers. ;; This makes it easier to distinguish among other org buffers.