Store all temporary stuff in a specific cache folder

Instead of using effectively TMPDIR on the machine, let's use a `cache`
folder in the root of the .emacs.d directory.
This commit is contained in:
2019-03-25 17:16:29 +00:00
parent 928a34b7e2
commit 2e6dd89003
10 changed files with 39 additions and 21 deletions

View File

@@ -49,5 +49,12 @@
("~/.dotfiles" . 2))
magit-status-buffer-switch-function 'switch-to-buffer))
(use-package transient
:defer t
:config
(setq transient-history-file (expand-file-name "transient/history.el" siren-cache-dir)
transient-levels-file (expand-file-name "transient/levels.el" siren-cache-dir)
transient-values-file (expand-file-name "transient/values.el" siren-cache-dir)))
(provide 'siren-magit)
;;; siren-magit.el ends here