doom-private-dir=>doom-local-dir; move packages and cache into doom-local-dir

This commit is contained in:
Henrik Lissner 2017-01-31 18:58:56 -05:00
parent a9e29c053b
commit f5a0d72fc0

View file

@ -34,22 +34,21 @@ will be set.")
(defvar doom-modules-dir (concat doom-emacs-dir "modules/")
"Where configuration modules are stored")
(defvar doom-private-dir (concat doom-emacs-dir "private/")
"Where private configuration filse and assets are stored (like snippets)")
(defvar doom-scripts-dir (concat doom-emacs-dir "scripts/")
"Where external dependencies are stored (like libraries or binaries)")
(defvar doom-packages-dir (concat doom-private-dir "packages/")
(defvar doom-local-dir (concat doom-emacs-dir ".local/")
"Untracked directory for local Emacs files, including the cache
(`doom-cache-dir'), packages (`doom-packages-dir') and autoloads file.")
(defvar doom-cache-dir
(concat doom-local-dir "cache/" (system-name) "/")
"Hostname-based directory for temporary files.")
(defvar doom-packages-dir
(concat doom-local-dir "packages/")
"Where package.el and quelpa plugins (and their caches) are kept.")
(defvar doom-themes-dir (concat doom-private-dir "themes/")
"Where theme files and subfolders go")
(defvar doom-temp-dir
(concat doom-private-dir "cache/" (system-name) "/")
"Hostname-based elisp temp directories")
(defvar doom-org-dir "~/org/"
"Where to find org notes")