Revise docstring for doom-{etc,cache}-dir
This commit is contained in:
parent
9924a43506
commit
a2a5910126
1 changed files with 4 additions and 6 deletions
10
core/core.el
10
core/core.el
|
@ -40,17 +40,15 @@ that are safe to share across systems (if this config is symlinked across
|
||||||
several computers).")
|
several computers).")
|
||||||
|
|
||||||
(defvar doom-etc-dir (concat doom-local-dir "etc/")
|
(defvar doom-etc-dir (concat doom-local-dir "etc/")
|
||||||
"Directory for non-volatile storage. For volatile story, see `doom-cache-dir'.
|
"Directory for non-volatile storage.
|
||||||
|
|
||||||
Use this for dependencies like servers or config files that are stable (i.e. it
|
Use this for files that don't change much, like servers binaries, external
|
||||||
should be unlikely that you need to delete them if something goes wrong).")
|
dependencies or long-term shared data.")
|
||||||
|
|
||||||
(defvar doom-cache-dir (concat doom-local-dir "cache/")
|
(defvar doom-cache-dir (concat doom-local-dir "cache/")
|
||||||
"Directory for volatile storage.
|
"Directory for volatile storage.
|
||||||
|
|
||||||
Deleted when `doom/reset' is called. Use this for transient files; on-the-fly
|
Use this for files that change often, like cache files.")
|
||||||
like caches and temporary files. Anything that you don't mind deleting if there
|
|
||||||
are problems.")
|
|
||||||
|
|
||||||
(defvar doom-packages-dir (concat doom-local-dir "packages/")
|
(defvar doom-packages-dir (concat doom-local-dir "packages/")
|
||||||
"Where package.el and quelpa plugins (and their caches) are stored.")
|
"Where package.el and quelpa plugins (and their caches) are stored.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue