mirror of
https://github.com/correl/org-roam-export-backlinks.git
synced 2024-11-14 11:09:33 +00:00
Configure org-roam
This commit is contained in:
parent
fc66cbe588
commit
5663580322
3 changed files with 9 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,3 +5,5 @@ tmp/
|
|||
|
||||
|
||||
.eldev
|
||||
*.elc
|
||||
org-roam.db
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
;;
|
||||
;;; Code:
|
||||
|
||||
|
||||
(require 'org-roam)
|
||||
|
||||
(provide 'org-roam-export)
|
||||
;;; org-roam-export.el ends here
|
||||
|
|
15
tests.el
15
tests.el
|
@ -2,15 +2,6 @@
|
|||
;;
|
||||
;; Copyright (C) 2022 Correl Roush
|
||||
;;
|
||||
;; Author: Correl Roush <correlr@zephyrus>
|
||||
;; Maintainer: Correl Roush <correlr@zephyrus>
|
||||
;; Created: June 11, 2022
|
||||
;; Modified: June 11, 2022
|
||||
;; Version: 0.0.1
|
||||
;; Keywords: abbrev bib c calendar comm convenience data docs emulations extensions faces files frames games hardware help hypermedia i18n internal languages lisp local maint mail matching mouse multimedia news outlines processes terminals tex tools unix vc wp
|
||||
;; Homepage: https://github.com/correlr/tests
|
||||
;; Package-Requires: ((emacs "24.3"))
|
||||
;;
|
||||
;; This file is not part of GNU Emacs.
|
||||
;;
|
||||
;;; Commentary:
|
||||
|
@ -20,8 +11,14 @@
|
|||
;;; Code:
|
||||
|
||||
(require 'ert)
|
||||
(require 'org-roam)
|
||||
(require 'org-roam-export)
|
||||
|
||||
(setq org-roam-directory (expand-file-name "./test-slipbox")
|
||||
org-roam-db-location (expand-file-name "org-roam.db"))
|
||||
(org-roam-db-sync)
|
||||
|
||||
|
||||
(ert-deftest simple-test ()
|
||||
(should (= 1 1)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue