From eec3844f73b166aa201fd6305a5ad13ae477b58b Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 18 Mar 2021 17:54:39 -0400 Subject: [PATCH] Cleanup writing --- modules/writing.org | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/modules/writing.org b/modules/writing.org index 821ba33..4772448 100644 --- a/modules/writing.org +++ b/modules/writing.org @@ -59,29 +59,25 @@ Download and install *Org roam*[fn:4], a plain text knowledge management system + Notes can be arbitrarily referenced + Contexts created by linking topics and notes ++ Install dependencies on *Debian/Ubuntu* systems ++ Configure custom keybindings for roam behind =SPC r= + + Find with =f= + + Insert with =i= + + Buffer with =b= + + Capture with =c= #+begin_src emacs-lisp (use-package org-roam :hook (after-init . org-roam-mode) + :init (dotfiles/install "sqlite") :custom (org-roam-directory org-directory) (org-roam-capture-templates '()) - (org-roam-dailies-capture-templates '())) -#+end_src - -Configure custom keybindings behind =SPC r=. - -+ Find with =f= -+ Insert with =i= -+ Buffer with =b= -+ Capture with =c= - -#+begin_src emacs-lisp -(dotfiles/leader - "r" '(:ignore t :which-key "Roam") - "ri" '(org-roam-insert :which-key "Insert") - "rf" '(org-roam-find-file :which-key "Find") - "rc" '(org-roam-capture :which-key "Capture") - "rb" '(org-roam-buffer-toggle-display :which-key "Buffer")) + (org-roam-dailies-capture-templates '()) + :config (dotfiles/leader "r" '(:ignore t :which-key "Roam") + "ri" '(org-roam-insert :which-key "Insert") + "rf" '(org-roam-find-file :which-key "Find") + "rc" '(org-roam-capture :which-key "Capture") + "rb" '(org-roam-buffer-toggle-display :which-key "Buffer"))) #+end_src ** File slugs