aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2020-11-03 08:30:55 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2020-11-03 08:30:55 +0100
commitc96d83265a5f9081b9cb0c63fd0b0721e94ee155 (patch)
tree5ede648c28029e739d19a0edb98f3d095bf708e5 /.emacs.d/init.org
parentc3a748b9e59f169778e782ebce1ec7a736ac57ae (diff)
downloaddotfiles-c96d83265a5f9081b9cb0c63fd0b0721e94ee155.tar.gz
dotfiles-c96d83265a5f9081b9cb0c63fd0b0721e94ee155.zip
emacs: fixed issue on mu4e's attachment directory
As simple as a typo on the environment variable to be used. Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.emacs.d/init.org')
-rw-r--r--.emacs.d/init.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 0ec7ab1..386ce8b 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -1403,7 +1403,7 @@ Miscellaneous settings, nothing too interesting (e.g. format flowed, fetcher com
#+BEGIN_SRC elisp
(setq mu4e-html2text-command "w3m -T text/html"
- mu4e-attachment-dir (or (getenv "XDG_DOWNLOAD_DIRECTORY") (getenv "HOME"))
+ mu4e-attachment-dir (or (getenv "XDG_DOWNLOAD_DIR") (getenv "HOME"))
mu4e-headers-date-format "%Y-%m-%d %H:%M"
message-citation-line-format "%N @ %Y-%m-%d %H:%M %Z:\n"
message-citation-line-function 'message-insert-formatted-citation-line