ox-nippou は org-mode のファイルから日報を出力するための自作パッケージです。
自作パッケージなので自前で el-get 用にレシピを用意している
( :name ox-nippou
:website "https://github.com/mugijiru/ox-nippou"
:description "ox-nippou is a tool for generating daily reports from Org-mode files."
:type github
:pkgname "mugijiru/ox-nippou"
:depends (org-mode markdown-mode)
:branch "main")
そしてそれを el-get-bundle
でインストールしている
(el-get-bundle ox-nippou)
をカスタム変数で設定している
(setopt ox-nippou-journal-directory (expand-file-name "journal" org-roam-directory))
(setopt ox-nippou-no-tasks-string ":pear:")
(setopt ox-nippou-todo-state-mapping '(("todo" . ("TODO"))
("doing" . ("DOING" "WAIT"))
("done" . ("DONE"))))