about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/config.el
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-12-14T17·54-0500
committerglittershark <grfn@gws.fyi>2020-12-14T18·18+0000
commite9e7ecfd5977af67c29748db55f890a7e504531c (patch)
tree501b2512cdf93fa3e9fdc1692503a44d7508ad9e /users/glittershark/emacs.d/config.el
parenta2c03cc78bdd7e5f36e0246ad2991aa0d6ac9c00 (diff)
feat(gs/emacs): Bring back org-clubhouse r/2011
Change-Id: Id89bd99740b7761c092a923912b07917b56f4d55
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2255
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/emacs.d/config.el')
-rw-r--r--users/glittershark/emacs.d/config.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el
index 6a8c41d9d9..9eaa539148 100644
--- a/users/glittershark/emacs.d/config.el
+++ b/users/glittershark/emacs.d/config.el
@@ -269,6 +269,21 @@
 
 (setq doom-modeline-height 12)
 
+(load "/home/grfn/code/org-clubhouse/org-clubhouse.el")
+(use-package! org-clubhouse
+  :hook (org-mode . org-clubhouse-mode)
+  :config
+  (setq org-clubhouse-state-alist '(("BACKLOG" . "Unscheduled")
+                                    ("TODO" . "Ready for Development")
+                                    ("ACTIVE" . "In Development")
+                                    ("PR" . "Ready for Review")
+                                    ("DONE" . "Completed"))
+        org-clubhouse-username "griffinsmith"
+        org-clubhouse-claim-story-on-status-update '("ACTIVE" "PR" "DONE")
+        org-clubhouse-create-stories-with-labels 'existing
+        org-clubhouse-workflow-name "Engineering"))
+
+
 
 ;; Should really figure out which of these is correct, eventually