COM new potential code for fixed package versions

This commit is contained in:
Nathan Dwarshuis 2019-10-25 22:03:37 -04:00
parent ed5b9f9a73
commit 67cd8f9bad
1 changed files with 10 additions and 0 deletions

10
init.el
View File

@ -11,6 +11,12 @@
;; '(watch-files find-when-checking) ;; '(watch-files find-when-checking)
;; '(check-on-save 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 ;; bootstrap straight
(defvar bootstrap-version) (defvar bootstrap-version)
(let ((bootstrap-file (let ((bootstrap-file
@ -25,6 +31,10 @@
(eval-print-last-sexp))) (eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage)) (load bootstrap-file nil 'nomessage))
;; load experimental straight functions for pinning
;; (autoload #'straight-x-pull-all "straight-x")
;; (autoload #'straight-x-freeze-versions "straight-x")
;; install use-package itself ;; install use-package itself
(straight-use-package 'use-package) (straight-use-package 'use-package)