aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-07-14 09:55:51 -0700
committerGravatar Tom Willemse2020-07-14 09:55:51 -0700
commitdbf740ba1eb7e50461a2dec3638c79570101af6b (patch)
tree3ceee830836b89f7d1cac269db27d2c090f358b4
parent776b55608fc3dbd13a54839064e9d6b206bc9adc (diff)
downloademacs-config-dbf740ba1eb7e50461a2dec3638c79570101af6b.tar.gz
emacs-config-dbf740ba1eb7e50461a2dec3638c79570101af6b.zip
Add ‘org-roam’
-rw-r--r--oni-org/oni-org.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index 8500b03..54c3295 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.0710.101908
-;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons)
+;; Version: 2020.0714.095527
+;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons 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
@@ -36,6 +36,7 @@
(require 'org-edna)
(require 'org-element)
(require 'org-habit)
+(require 'org-roam)
(require 'subr-x)
(require 'yasnippet)
@@ -199,6 +200,8 @@ _l_: Store link ^^ _j_: Journal entry
(setq org-src-fontify-natively t)
(setq org-use-fast-todo-selection t)
+(setq org-roam-directory "~/documents/zettelkasten")
+
;;; Set the maximum indentation level for description lists to 5 (which is the
;;; seemingly hardcoded value of the indentation it gets when it goes over
;;; ‘org-list-description-max-indent’) so that I don’t get dangling descriptions
@@ -348,6 +351,7 @@ also move point to the start of the heading."
(add-hook 'org-mode-hook 'org-indent-mode)
(add-hook 'org-mode-hook 'visual-line-mode)
+(org-roam-mode)
(org-edna-mode)
(unless (eq system-type 'windows-nt)