summaryrefslogtreecommitdiffstats
path: root/README.org
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-12-24 11:49:44 +0000
committerYann Herklotz <git@yannherklotz.com>2022-12-24 11:49:44 +0000
commita96d758daa28fa375dad4617e53ea2713aa7eb45 (patch)
tree8596c072e6291bc752afc244479039aef1b7fa7d /README.org
parentd1309fe7f770a865441b91c1c8327036c307ef54 (diff)
downloadorg-zettelkasten-a96d758daa28fa375dad4617e53ea2713aa7eb45.tar.gz
org-zettelkasten-a96d758daa28fa375dad4617e53ea2713aa7eb45.zip
Remove support for zettelkasten.el and fork repository
Diffstat (limited to 'README.org')
-rw-r--r--README.org35
1 files changed, 35 insertions, 0 deletions
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..8eadc73
--- /dev/null
+++ b/README.org
@@ -0,0 +1,35 @@
+#+title: Zettelkasten for Org
+#+author: Yann Herklotz
+
+[[https://zettelkasten.de/][Zettelkasten]] is a note-taking technique designed to keep, and create new links
+between all the notes as they are written. This allows them to develop over
+time, link to various different topics and allow the notes to grow into a
+network over time. This helps draw connections between different fields.
+
+The idea of this mode is to integrate fully into Emacs Org mode, trying to
+leverage most of its preexisting features. It is split into two modes, the main
+one being `org-zettelkasten`, and a secondary standalone mode called
+`zettelkasten` which is a minimal implementation of existing Zettelkasten modes.
+
+* How to use `org-zettelkasten`
+
+The method implemented in `org-zettelkasten` has been described in detail in a [blog
+article](https://yannherklotz.com/blog/2020-12-21-introduction-to-luhmanns-zettelkasten.html). It
+leverages `org-mode` features such as `CUSTOM_ID`,
+
+*Manual Installation*
+
+#+begin_src emacs-lisp
+ (add-to-list 'load-path "/path/to/org-zettelkasten.el")
+ (require 'org-zettelkasten)
+ (add-hook 'org-mode-hook #'org-zettelkasten-mode)
+#+end_src
+
+*~use-package~ from Melpa*
+
+#+begin_src emacs-lisp
+ (use-package org-zettelkasten
+ :ensure t
+ :config
+ (add-hook 'org-mode-hook #'org-zettelkasten-mode))
+#+end_src