Created
June 10, 2020 21:00
-
-
Save drewr/6fde12a720e1e394f3c1e0fef856d82c to your computer and use it in GitHub Desktop.
org-roam and helm debugging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(eval-after-load 'helm | |
'(require 'helm-config)) | |
;; .... | |
(use-package helm | |
:ensure t | |
:pin "melpa" | |
:requires (async popup) | |
:config | |
(helm-mode 1)) | |
(use-package helm-command | |
:bind (("M-x" . helm-M-x))) | |
(use-package helm-files | |
:bind (("C-x C-f" . helm-find-files))) | |
(use-package helm-info | |
:bind ("C-h r" . helm-info-emacs)) | |
;; .... | |
(use-package org-roam | |
:ensure t | |
:hook | |
(after-init . org-roam-mode) | |
:custom | |
(org-roam-directory "~/Sync/Roam") | |
(org-roam-completion-system 'helm) | |
:bind (:map org-roam-mode-map | |
(("C-c n l" . org-roam) | |
("C-c n f" . org-roam-find-file) | |
("C-c n j" . org-roam-jump-to-index) | |
("C-c n b" . org-roam-switch-to-buffer) | |
("C-c n g" . org-roam-graph)) | |
:map org-mode-map | |
(("C-c n i" . org-roam-insert)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
:requires (async popup)
was causing problems loading, though the errors didn't bubble up.