mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
13 lines
205 B
EmacsLisp
13 lines
205 B
EmacsLisp
;;; app/email/autoload.el
|
|
|
|
;;;###autoload
|
|
(defun =email ()
|
|
(interactive)
|
|
(call-interactively 'mu4e))
|
|
|
|
;;;###autoload
|
|
(defun +email/compose ()
|
|
(interactive)
|
|
(call-interactively 'mu4e-compose-new))
|
|
|