summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-10-25 13:18:40 -0500
committerCase Duckworth2020-10-25 13:18:40 -0500
commiteeb506f55237a289725f932bdf233f2443c73261 (patch)
tree9f77adbed61da3edb06668c1caaf5f3938411eca /early-init.el
parentConvert to Literate Config (diff)
downloademacs-eeb506f55237a289725f932bdf233f2443c73261.tar.gz
emacs-eeb506f55237a289725f932bdf233f2443c73261.zip
Change line-endings to Unix
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/early-init.el b/early-init.el deleted file mode 100644 index 5e62175..0000000 --- a/early-init.el +++ /dev/null
@@ -1,22 +0,0 @@
1;;; early-init.el -*- lexical-binding: t; no-byte-compile: t -*-
2
3(setq load-prefer-newer t)
4
5;;; Bootstrap `straight.el'
6(defvar bootstrap-version)
7(let ((bootstrap-file
8 (expand-file-name "straight/repos/straight.el/bootstrap.el"
9 user-emacs-directory))
10 (bootstrap-version 5))
11 (unless (file-exists-p bootstrap-file)
12 (with-current-buffer
13 (url-retrieve-synchronously
14 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
15 'silent 'inhibit-cookies)
16 (goto-char (point-max))
17 (eval-print-last-sexp)))
18 (load bootstrap-file nil 'nomessage))
19
20;;; Bootstrap `use-package'
21(setq straight-use-package-by-default t)
22(straight-use-package 'use-package)