aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-01-04 10:47:56 -0800
committerGravatar Tom Willemse2021-01-04 10:47:56 -0800
commite7f4dfe84ec4dc576061b92d71466b5263e96763 (patch)
tree6dc02f403233f2faaea637cc58e35e57ecef7821
parent7b7a67abc09c0fcdcd63a455aba9fbc041f1732b (diff)
downloademacs-config-e7f4dfe84ec4dc576061b92d71466b5263e96763.tar.gz
emacs-config-e7f4dfe84ec4dc576061b92d71466b5263e96763.zip
Add org-journal and org-roam
-rw-r--r--oni-org/oni-org.el16
1 files changed, 14 insertions, 2 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index b6dc325..5a1737d 100644
--- a/oni-org/oni-org.el
+++ b/oni-org/oni-org.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2020.1229.213150
-;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons)
+;; Version: 2021.0104.104539
+;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons org-journal org-roam)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -461,5 +461,17 @@ After running it once remove it from `org-capture-after-finalize-hook'."
(org-goto-first-child)
(list (point-marker))))
+;;; org-journal
+
+(setq org-journal-dir (expand-file-name "~/documents/org/journal/"))
+
+;;; org-roam
+
+(require 'org-roam)
+
+(setq org-roam-directory (expand-file-name "~/documents/org/"))
+
+(org-roam-mode)
+
(provide 'oni-org)
;;; oni-org.el ends here