From 67cd8f9bad74ed9aad0b9e0588c1a03c2e767eb4 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 25 Oct 2019 22:03:37 -0400 Subject: [PATCH] COM new potential code for fixed package versions --- init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.el b/init.el index 6fba198..9758320 100644 --- a/init.el +++ b/init.el @@ -11,6 +11,12 @@ ;; '(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 @@ -25,6 +31,10 @@ (eval-print-last-sexp))) (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 (straight-use-package 'use-package)