No description
Find a file
Griffin Smith 0967cbcea6 fix: flow control in story creation
The various prompt-function callbacks get called on another thread,
meaning we can't wait for them to return to set the value. This moves
the flow control for story creation so it actually happens if you don't
have a default story type set
2019-02-01 11:25:39 -05:00
LICENSE docs: MIT License 2018-03-02 10:44:48 -05:00
org-clubhouse.el fix: flow control in story creation 2019-02-01 11:25:39 -05:00
README.org docs: Add spacemacs setup instructions 2018-11-14 17:38:59 -05:00

Org-Clubhouse

Simple, unopinionated integration between Emacs's org-mode and the Clubhouse issue tracker

Install

Quelpa

(quelpa '(org-clubhouse
          :fetcher github
          :repo "urbint/org-clubhouse"))

DOOM Emacs

;; in packages.el
(package! org-clubhouse
  :recipe (:fetcher github
           :repo "urbint/org-clubhouse"
           :files ("*")))

;; in config.el
(def-package! org-clubhouse)

Spacemacs

;; in .spacemacs (SPC+fed)
   dotspacemacs-additional-packages
    '((org-clubhouse :location (recipe :fetcher github :repo "urbint/org-clubhouse")))

Setup

Once setup, you'll need to set two global config vars.

(setq org-clubhouse-auth-token "<your-token>"
      org-clubhouse-team-name "<your-team-name>")