diff --git a/emacs/init.org b/emacs/init.org index b7401dc..c333950 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -1721,6 +1721,16 @@ Redefine org-html-src-block to wrap code blocks in
 and language clas
       (require 'ox-gfm)))
 #+END_SRC
 
+*** Jira
+#+BEGIN_SRC emacs-lisp
+  (use-package ox-jira
+    :defer t
+    :straight (:host github :repo "stig/ox-jira.el")
+    :init
+    (with-eval-after-load 'org
+      (require 'ox-jira)))
+#+END_SRC
+
 ** org-babel
 Literate programming!
 #+BEGIN_SRC emacs-lisp