diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-20 23:10:21 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-20 23:10:21 +0200 |
| commit | aa93bee0839c86fdb55656c69918821a80bbfcfc (patch) | |
| tree | ac6418aeea2a24dae371b4f4ea2b2aa0910d3168 /.emacs.d | |
| parent | e7619e72c9aa98b9edfe99ad501eade808389f73 (diff) | |
| download | dotfiles-aa93bee0839c86fdb55656c69918821a80bbfcfc.tar.gz dotfiles-aa93bee0839c86fdb55656c69918821a80bbfcfc.zip | |
emacs: removed deprecated variables in 27.x
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.emacs.d')
| -rw-r--r-- | .emacs.d/init.org | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org index 704dc39..ee8ba6a 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -945,8 +945,7 @@ this same file as root: Let's extend =dired= with some handy tweaks. #+BEGIN_SRC elisp -(setq directory-free-space-args "-Pkh" - dired-dwim-target t +(setq dired-dwim-target t dired-omit-mode nil dired-recursive-copies 'always dired-recursive-deletes 'always @@ -1217,6 +1216,9 @@ things globally: (when (file-directory-p "/usr/share/emacs/site-lisp/mu4e") (require 'mu4e) + (when (version< mu4e-mu-version "1.4.0") + (warn "You need at least mu 1.4.0 to get things working...")) + (when (featurep 'mu4e) #+END_SRC @@ -1230,7 +1232,6 @@ Diferent SMTP options that will be used for each context. #+BEGIN_SRC elisp (setq message-send-mail-function 'smtpmail-send-it - mu4e-maildir (expand-file-name "~/.mail") starttls-use-gnutls t) #+END_SRC @@ -1383,18 +1384,6 @@ If mu4e cannot figure things out, ask me. (setq mu4e-compose-context-policy 'ask) #+END_SRC -Fill the =mu4e-user-mail-address-list= variable with the contexts. - -#+BEGIN_SRC elisp - (setq mu4e-user-mail-address-list - (delq nil - (mapcar (lambda (context) - (when (mu4e-context-vars context) - (cdr (assq 'user-mail-address - (mu4e-context-vars context))))) - mu4e-contexts))) -#+END_SRC - Setting my bookmarks #+BEGIN_SRC elisp |
