about summary refs log tree commit diff
path: root/README.org
diff options
context:
space:
mode:
authorRussell Matney <russell.matney@gmail.com>2018-03-02T20·46-0500
committerRussell Matney <russell.matney@gmail.com>2018-03-02T21·12-0500
commitbfc599abe3cfb1b76d8531f31d96c7a535bda05f (patch)
tree35c59487d57821d661958a5627ca189804fb88ba /README.org
parent2b8278579455d36062130f1104d658a4f461a6f6 (diff)
docs: installation instructions for quelpa, doom
Adds installation instructions for Quelpa and Doom Emacs.
Diffstat (limited to 'README.org')
-rw-r--r--README.org23
1 files changed, 23 insertions, 0 deletions
diff --git a/README.org b/README.org
index 0d862a535b..79cef4dc2c 100644
--- a/README.org
+++ b/README.org
@@ -2,4 +2,27 @@
 
 Simple, unopinionated integration between Emacs's [[https://orgmode.org/][org-mode]] and the [[https://clubhouse.io/][Clubhouse]] issue tracker
 
+* Install
+
+** [[https://github.com/quelpa/quelpa][Quelpa]]
+
+#+BEGIN_SRC emacs-lisp
+(quelpa! '(org-clubhouse
+           :fetcher github
+           :repo "urbint/org-clubhouse"
+           :files ("*")))
+#+END_SRC
+
+** [[https://github.com/hlissner/doom-emacs/][DOOM Emacs]]
+
+#+BEGIN_SRC emacs-lisp
+;; in packages.el
+(package! org-clubhouse
+  :recipe (:fetcher github
+           :repo "urbint/org-clubhouse"
+           :files ("*")))
+
+;; in config.el
+(def-package! org-clubhouse)
+#+END_SRC