mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -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))
|
|
|