summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-09-16 20:23:08 -0500
committerCase Duckworth2020-09-16 20:23:08 -0500
commita80f901a345aaa8e0ca3c883ec05264e70b6d12e (patch)
treee04e4ef4d02c0e190f1c6a92ba739f0842f60a5e /early-init.el
parentChange acdw/at-* variables to constants with earmuffs (diff)
downloademacs-a80f901a345aaa8e0ca3c883ec05264e70b6d12e.tar.gz
emacs-a80f901a345aaa8e0ca3c883ec05264e70b6d12e.zip
Allow recursive minibuffers
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/early-init.el b/early-init.el index 5e28f4d..e7595a9 100644 --- a/early-init.el +++ b/early-init.el
@@ -17,12 +17,13 @@
17;;(setq debug-on-error t) 17;;(setq debug-on-error t)
18 18
19;;; different platforms 19;;; different platforms
20(setq acdw/at-work (eq system-type 'windows-nt)) 20(defconst *acdw/at-work* (eq system-type 'windows-nt))
21(setq acdw/at-larry (string= (system-name) "larry")) 21(defconst *acdw/at-larry* (string= (system-name) "larry"))
22(setq acdw/at-bax (string= (system-name) "bax")) 22(defconst *acdw/at-bax* (string= (system-name) "bax"))
23(defconst *acdw/at-home* (or *acdw/at-larry* *acdw/at-bax*))
23 24
24;; this needs to be before bootstrapping straight.el 25;; this needs to be before bootstrapping straight.el
25(when acdw/at-work 26(when *acdw/at-work*
26 (add-to-list 'exec-path "~/bin") 27 (add-to-list 'exec-path "~/bin")
27 (add-to-list 'exec-path "C:/Users/aduckworth/Downloads/PortableGit/bin")) 28 (add-to-list 'exec-path "C:/Users/aduckworth/Downloads/PortableGit/bin"))
28 29