summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorAmin Bandali <mab@gnu.org>2020-01-27 14:29:51 -0500
committerAmin Bandali <mab@gnu.org>2020-01-27 14:38:48 -0500
commit9ed5410ebfb55d1d8c8e38901c9328b0289406a3 (patch)
tree9921ec788d014d2f8fb0f5d2670ab28a457fb3f4 /.emacs.d
parent8e0e429770ca3b727cc4b9cd321421201bdff019 (diff)
downloadconfigs-9ed5410ebfb55d1d8c8e38901c9328b0289406a3.tar.gz
configs-9ed5410ebfb55d1d8c8e38901c9328b0289406a3.tar.xz
configs-9ed5410ebfb55d1d8c8e38901c9328b0289406a3.zip
emacs: set eww-download-directory to $XDG_DOWNLOAD_DIR
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 60b8215..1b484e1 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -162,7 +162,8 @@
(exec-path-from-shell-initialize)
;; while we're at it, let's fix access to our running ssh-agent
(exec-path-from-shell-copy-env "SSH_AGENT_PID")
- (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
+ (exec-path-from-shell-copy-env "SSH_AUTH_SOCK")
+ (exec-path-from-shell-copy-env "XDG_DOWNLOAD_DIR"))
;; start up emacs server. see
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
@@ -2109,6 +2110,11 @@ This function is intended for use with `ivy-ignore-buffers'."
(setq scpaste-http-destination "https://p.bndl.org"
scpaste-scp-destination "nix:/var/www/p.bndl.org"))
+(use-package eww
+ :custom
+ (eww-download-directory (file-name-as-directory
+ (getenv "XDG_DOWNLOAD_DIR"))))
+
;;; Email (with Gnus)