mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
7 lines
219 B
EmacsLisp
7 lines
219 B
EmacsLisp
;;; -*- lexical-binding: t -*-
|
|
(let ((mail-file (expand-file-name "mail.el" user-emacs-directory)))
|
|
(if (file-exists-p mail-file)
|
|
(load-file mail-file)
|
|
(message "Can't load mail.el")))
|
|
|
|
(provide 'sqrt-mail)
|