Skip to content

Instantly share code, notes, and snippets.

@drewr
Created June 10, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewr/6fde12a720e1e394f3c1e0fef856d82c to your computer and use it in GitHub Desktop.
Save drewr/6fde12a720e1e394f3c1e0fef856d82c to your computer and use it in GitHub Desktop.
org-roam and helm debugging
(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))))
@drewr
Copy link
Author

drewr commented Jun 11, 2020

The :requires (async popup) was causing problems loading, though the errors didn't bubble up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment