diff options
author | Russell Matney <russell.matney@gmail.com> | 2018-03-02T20·46-0500 |
---|---|---|
committer | Russell Matney <russell.matney@gmail.com> | 2018-03-02T21·12-0500 |
commit | bfc599abe3cfb1b76d8531f31d96c7a535bda05f (patch) | |
tree | 35c59487d57821d661958a5627ca189804fb88ba /README.org | |
parent | 2b8278579455d36062130f1104d658a4f461a6f6 (diff) |
docs: installation instructions for quelpa, doom
Adds installation instructions for Quelpa and Doom Emacs.
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/README.org b/README.org index 0d862a535bda..79cef4dc2c14 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 |