summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-25 12:02:28 -0500
committerCase Duckworth2021-03-25 12:03:14 -0500
commit46f53399d54cb05fe140e0821278cc5c4fca1c09 (patch)
tree996bcb5cb82d526060ee62a42be579ad92a0d874 /early-init.el
parentTruncate lines (diff)
downloademacs-46f53399d54cb05fe140e0821278cc5c4fca1c09.tar.gz
emacs-46f53399d54cb05fe140e0821278cc5c4fca1c09.zip
Require `acdw' in `early-init.el'
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el15
1 files changed, 4 insertions, 11 deletions
diff --git a/early-init.el b/early-init.el index 9b3103a..d803c89 100644 --- a/early-init.el +++ b/early-init.el
@@ -19,17 +19,10 @@
19 19
20;;; Code: 20;;; Code:
21 21
22;;; Define personal-use constants 22;;; Add `acdw.el'
23(defconst acdw/system (pcase system-type 23(push (expand-file-name "lisp/" user-emacs-directory)
24 ('gnu/linux :home) 24 load-path)
25 ((or 'msdos 'windows-nt) :work) 25(require 'acdw)
26 (_ :other))
27 "Which system is currently being used.")
28
29(defvar acdw/dir (expand-file-name
30 (convert-standard-filename "var/")
31 user-emacs-directory)
32 "A directory to hold extra configuration and emacs data.")
33 26
34;;; Speed up init 27;;; Speed up init
35;; see doom-emacs, et al. 28;; see doom-emacs, et al.