mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
23 lines
364 B
EmacsLisp
23 lines
364 B
EmacsLisp
;;; siren-ox-jira.el --- jimeh's Emacs Siren: ox-jira configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for ox-jira.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-org-mode)
|
|
|
|
(use-package ox-jira
|
|
:defer t
|
|
|
|
:hook
|
|
(org-mode . siren-ox-jira-setup)
|
|
|
|
:preface
|
|
(defun siren-ox-jira-setup ()
|
|
(require 'ox-jira)))
|
|
|
|
(provide 'siren-ox-jira)
|
|
;;; siren-ox-jira.el ends here
|