whompmacs/whomp/whomp-notes.el

29 lines
797 B
EmacsLisp

;;
;; Note Taking Packages
;; These are the packages related to note taking
;;
(defcustom whomp-notes nil
"Whether or not to enable note taking packages."
:type '(set (const :tag "HOWM" howm) ;; HOWM
)
:group 'whomp-config)
(when (memq 'howm whomp-notes)
(use-package howm
:straight t
:defer t)
;; Directory configuration
(whomp/ensure-directory-exists "~/howm")
(setq howm-home-directory "~/howm/")
(setq howm-directory "~/howm/")
(setq howm-keyword-file (expand-file-name ".howm-keys" howm-home-directory))
(setq howm-history-file (expand-file-name ".howm-history" howm-home-directory))
(setq howm-file-name-format "%Y/%m/%Y%m%d%H%M%S.org")
(message "HOWM loaded"))
(message "W.H.O.M.P. Note Taking packages loaded")
(provide 'whomp-notes)
;; whomp-notes.el ends here