From 46f53399d54cb05fe140e0821278cc5c4fca1c09 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 25 Mar 2021 12:02:28 -0500 Subject: Require `acdw' in `early-init.el' --- early-init.el | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'early-init.el') 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 @@ ;;; Code: -;;; Define personal-use constants -(defconst acdw/system (pcase system-type - ('gnu/linux :home) - ((or 'msdos 'windows-nt) :work) - (_ :other)) - "Which system is currently being used.") - -(defvar acdw/dir (expand-file-name - (convert-standard-filename "var/") - user-emacs-directory) - "A directory to hold extra configuration and emacs data.") +;;; Add `acdw.el' +(push (expand-file-name "lisp/" user-emacs-directory) + load-path) +(require 'acdw) ;;; Speed up init ;; see doom-emacs, et al. -- cgit 1.4.1-21-gabe81