Minor refactors & revision across the board

This commit is contained in:
Henrik Lissner 2020-07-31 01:39:24 -04:00
parent a54d2b3804
commit 6a64f37435
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
11 changed files with 48 additions and 35 deletions

View file

@ -37,10 +37,14 @@
:desc "Tomorrow" "m" #'org-roam-dailies-tomorrow
:desc "Yesterday" "y" #'org-roam-dailies-yesterday))
:config
(setq org-roam-directory (file-name-as-directory (expand-file-name (or org-roam-directory "roam")
org-directory))
org-roam-verbose nil ; https://youtu.be/fn4jIlFwuLU
org-roam-buffer-window-parameters '((no-delete-other-windows . t)) ; make org-roam buffer sticky
(setq org-roam-directory
(file-name-as-directory
(expand-file-name (or org-roam-directory "roam")
org-directory))
org-roam-verbose nil ; https://youtu.be/fn4jIlFwuLU
;; Make org-roam buffer sticky; i.e. don't replace it when opening a
;; file with an *-other-window command.
org-roam-buffer-window-parameters '((no-delete-other-windows . t))
org-roam-completion-system
(cond ((featurep! :completion helm) 'helm)
((featurep! :completion ivy) 'ivy)