ADD straight boot
This commit is contained in:
parent
53e9cc898c
commit
24c4701516
|
@ -2,6 +2,7 @@
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!README.org
|
!README.org
|
||||||
!init.el
|
!init.el
|
||||||
|
!straight-boot.el
|
||||||
!install_deps
|
!install_deps
|
||||||
|
|
||||||
# track versions of installed packages
|
# track versions of installed packages
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
;; disable automatic package updates
|
||||||
|
(setq straight-check-for-modifications nil)
|
||||||
|
|
||||||
|
;; watch for repo modifications if we have python3 and watchexec
|
||||||
|
;; otherwise just use a save hook
|
||||||
|
;; (setq straight-check-for-modifications
|
||||||
|
;; (if (and (executable-find "python3")
|
||||||
|
;; (executable-find "watchexec"))
|
||||||
|
;; '(watch-files find-when-checking)
|
||||||
|
;; '(check-on-save find-when-checking)))
|
||||||
|
|
||||||
|
;; add pinned packages to straight
|
||||||
|
;; (setq straight-profiles
|
||||||
|
;; '((nil . "default.el")
|
||||||
|
;; ;; Packages which are pinned to a specific commit.
|
||||||
|
;; (pinned . "pinned.el")))
|
||||||
|
|
||||||
|
;; bootstrap straight
|
||||||
|
(defvar bootstrap-version)
|
||||||
|
(let ((bootstrap-file
|
||||||
|
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
|
||||||
|
(bootstrap-version 5))
|
||||||
|
(unless (file-exists-p bootstrap-file)
|
||||||
|
(with-current-buffer
|
||||||
|
(url-retrieve-synchronously
|
||||||
|
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
|
||||||
|
'silent 'inhibit-cookies)
|
||||||
|
(goto-char (point-max))
|
||||||
|
(eval-print-last-sexp)))
|
||||||
|
(load bootstrap-file nil 'nomessage))
|
||||||
|
|
||||||
|
;; install use-package itself
|
||||||
|
(straight-use-package 'use-package)
|
Loading…
Reference in New Issue