8ed9c37a7a
Add instructions for installation via Spacemacs
42 lines
1 KiB
Org Mode
42 lines
1 KiB
Org Mode
* Org-Clubhouse
|
|
|
|
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"))
|
|
#+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
|
|
|
|
** [[http://spacemacs.org/][Spacemacs]]
|
|
#+BEGIN_SRC emacs-lisp
|
|
;; in .spacemacs (SPC+fed)
|
|
dotspacemacs-additional-packages
|
|
'((org-clubhouse :location (recipe :fetcher github :repo "urbint/org-clubhouse")))
|
|
#+END_SRC
|
|
|
|
* Setup
|
|
|
|
Once setup, you'll need to set two global config vars.
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(setq org-clubhouse-auth-token "<your-token>"
|
|
org-clubhouse-team-name "<your-team-name>")
|
|
#+END_SRC
|