Add org-jira

This commit is contained in:
Jeremy Dormitzer 2021-02-23 12:14:52 -05:00
parent bb4005de74
commit cd7de3db22

View File

@ -47,14 +47,15 @@
;; Nuke the header keybindings
(setq org-super-agenda-header-map (make-sparse-keymap))
:custom
(org-super-agenda-groups '((:name "In progress"
(org-super-agenda-groups `((:name "In progress"
:todo "IN PROGRESS")
(:name "Lola"
:tag "@lola")
(:name "unifyDB"
:tag "@unifydb")
(:name "Personal"
:tag "@personal"))))
:tag "@personal")
(:name "Jira" :file-path ))))
(use-package org-gcal
:commands (org-gcal-sync
@ -83,4 +84,18 @@
,(expand-file-name "~/org/j-n-gcal.org")))
org-gcal-notify-p nil))
(use-package org-jira
:after (org)
:init
(setq jiralib-url "https://lola.atlassian.net"
org-jira-working-dir (expand-file-name "~/org/jira")
org-jira-jira-status-to-org-keyword-alist '(("To Do" . "TODO")
("Blocked" . "BLOCKED")
("In Progress" . "IN PROGRESS")
("Code Review" . "IN PROGRESS")
("Awaiting Release" . "IN PROGRESS")
("Done" . "DONE")
("Won't Fix" . "CANCELLED")))
(add-to-list 'org-agenda-files org-jira-working-dir))
(provide 'init-org)