Add org-jira
This commit is contained in:
parent
bb4005de74
commit
cd7de3db22
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user