diff options
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 9 |
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 | ||