(BREAKING) Don't host-namespace local files

Local cache and data files were stored in a parent folder named after
your host, because I'd symlink the same config across computers via
dropbox. This would cause byte-compile issues in packages, so I stopped
doing this.

Now that each computer gets its own clone, host-namespaced local
directories are unnecessary. There's no other benefit to having them.
This commit is contained in:
Henrik Lissner 2017-12-22 14:48:07 -05:00
parent a5596c8923
commit 6343e8ad85
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 13 additions and 22 deletions

View file

@ -140,7 +140,7 @@ startup."
(setq load-path doom--base-load-path
package-activated-list nil)
;; Ensure core folders exist
(dolist (dir (list doom-local-dir doom-etc-dir doom-cache-dir package-user-dir))
(dolist (dir (list doom-local-dir doom-etc-dir doom-cache-dir doom-packages-dir))
(unless (file-directory-p dir)
(make-directory dir t)))
(condition-case _ (package-initialize t)