2018-03-02 16:22:22 +01:00
|
|
|
* Org-Clubhouse
|
|
|
|
|
|
|
|
Simple, unopinionated integration between Emacs's [[https://orgmode.org/][org-mode]] and the [[https://clubhouse.io/][Clubhouse]] issue tracker
|
|
|
|
|
2018-03-02 21:46:35 +01:00
|
|
|
* Install
|
|
|
|
|
|
|
|
** [[https://github.com/quelpa/quelpa][Quelpa]]
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
2018-03-16 20:22:20 +01:00
|
|
|
(quelpa '(org-clubhouse
|
|
|
|
:fetcher github
|
|
|
|
:repo "urbint/org-clubhouse"))
|
2018-03-02 21:46:35 +01:00
|
|
|
#+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
|
2018-03-02 16:22:22 +01:00
|
|
|
|
2018-03-02 22:24:21 +01:00
|
|
|
|
|
|
|
* 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
|