docs: installation instructions for quelpa, doom

Adds installation instructions for Quelpa and Doom Emacs.
This commit is contained in:
Russell Matney 2018-03-02 15:46:35 -05:00
parent 2b82785794
commit bfc599abe3

View file

@ -2,4 +2,27 @@
Simple, unopinionated integration between Emacs's [[https://orgmode.org/][org-mode]] and the [[https://clubhouse.io/][Clubhouse]] issue tracker 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