docs: installation instructions for quelpa, doom
Adds installation instructions for Quelpa and Doom Emacs.
This commit is contained in:
parent
2b82785794
commit
bfc599abe3
1 changed files with 23 additions and 0 deletions
23
README.org
23
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue