From 85591ca296625cdce479df63849b66f76c877a3d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 12 Jun 2018 12:17:33 +0200 Subject: [PATCH] Move custom-file into local-dir (not etc-dir) Makes more sense to put more vital files in local than etc or cache. --- core/core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index 5d35adcf4..0ba5cd983 100644 --- a/core/core.el +++ b/core/core.el @@ -193,7 +193,7 @@ this, you'll get stuttering and random freezes) and resets abbrev-file-name (concat doom-local-dir "abbrev.el") auto-save-list-file-name (concat doom-cache-dir "autosave") backup-directory-alist (list (cons "." (concat doom-cache-dir "backup/"))) - custom-file (concat doom-etc-dir "custom.el") + custom-file (concat doom-local-dir "custom.el") mc/list-file (concat doom-etc-dir "mc-lists.el") pcache-directory (concat doom-cache-dir "pcache/") request-storage-directory (concat doom-cache-dir "request")