No description
Find a file
Griffin Smith 1b0b98ec7d feat: Create org-mode headlines from query
Merges in a function which has existed in my local setup for a while now
to run a query to Clubhouse and create all the results as org headlines
at a specified level
2018-09-26 11:41:33 -04:00
LICENSE docs: MIT License 2018-03-02 10:44:48 -05:00
org-clubhouse.el feat: Create org-mode headlines from query 2018-09-26 11:41:33 -04:00
README.org fix: quelpa install docs 2018-03-28 17:58:58 -04: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)

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