tvl-depot/README.org
Jean-Martin Archer 8ed9c37a7a docs: Add spacemacs setup instructions
Add instructions for installation via Spacemacs
2018-11-14 17:38:59 -05:00

1 KiB

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>")