summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-21 16:40:36 -0600
committerCase Duckworth2022-01-21 16:40:36 -0600
commit3ec991d541d8f6a285eb1a22d5f31d00afe85158 (patch)
treeea11b7c0228581b5741c7f2dc3d7413ff01678a9 /early-init.el
parentChange system to machine (diff)
parentMerge branch 'main' of https://tildegit.org/acdw/emacs (diff)
downloademacs-3ec991d541d8f6a285eb1a22d5f31d00afe85158.tar.gz
emacs-3ec991d541d8f6a285eb1a22d5f31d00afe85158.zip
Merge branch 'main' of tildegit.org:acdw/emacs
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index 2569602..40edbe5 100644 --- a/early-init.el +++ b/early-init.el
@@ -45,6 +45,7 @@
45 45
46(push (locate-user-emacs-file "lisp") load-path) 46(push (locate-user-emacs-file "lisp") load-path)
47(require 'acdw) 47(require 'acdw)
48(require 'compat)
48 49
49(+define-dir .etc (locate-user-emacs-file ".etc") 50(+define-dir .etc (locate-user-emacs-file ".etc")
50 "Directory for all of Emacs's various files. 51 "Directory for all of Emacs's various files.
@@ -146,7 +147,8 @@ See `no-littering' for examples.")
146(dolist (pkg '(el-patch 147(dolist (pkg '(el-patch
147 no-littering 148 no-littering
148 setup 149 setup
149 straight)) ; already installed, but what the hell 150 straight ; already installed, but what the hell
151 ))
150 (straight-use-package pkg) 152 (straight-use-package pkg)
151 (require pkg) 153 (require pkg)
152 (require (intern (format "+%s" pkg)) nil :noerror)) 154 (require (intern (format "+%s" pkg)) nil :noerror))