mu4e: move some defcustoms to mu4e-vars.el

This commit is contained in:
Dirk-Jan C. Binnema 2023-01-31 13:54:41 +02:00
parent 0ee86ac923
commit 7610e86e97
2 changed files with 31 additions and 32 deletions

View File

@ -1,6 +1,6 @@
;;; mu4e-vars.el -- part of mu4e, the mu mail user agent -*- lexical-binding: t -*-
;; Copyright (C) 2011-2022 Dirk-Jan C. Binnema
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
@ -32,6 +32,36 @@
"Mu4e - an email-client for Emacs."
:group 'mail)
(defcustom mu4e-confirm-quit t
"Whether to confirm to quit mu4e."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-modeline-support t
"Support for showing information in the modeline."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-notification-support nil
"Support for new-message notifications."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-org-support t
"Support Org-mode links."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-speedbar-support nil
"Support having a speedbar to navigate folders/bookmarks."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-eldoc-support nil
"Support eldoc help in the headers-view."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-date-format-long "%c"
"Date format to use in the message view.
Follows the format of `format-time-string'."

View File

@ -44,37 +44,6 @@
(defcustom mu4e-confirm-quit t
"Whether to confirm to quit mu4e."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-modeline-support t
"Support for showing information in the modeline."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-notification-support nil
"Support for new-message notifications."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-org-support t
"Support Org-mode links."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-speedbar-support nil
"Support having a speedbar to navigate folders/bookmarks."
:type 'boolean
:group 'mu4e)
(defcustom mu4e-eldoc-support nil
"Support eldoc help in the headers-view."
:type 'boolean
:group 'mu4e)
(when mu4e-speedbar-support
(require 'mu4e-speedbar)) ;; support for speedbar
(when mu4e-org-support