Fix issues related to built-in packages

This commit is contained in:
David Morgan 2024-01-27 16:12:06 +00:00
parent 1be08339d8
commit 1c752a261f
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 6 additions and 0 deletions

View File

@ -74,6 +74,9 @@
;; Block until current queue processed.
(elpaca-wait)
(add-to-list 'elpaca-ignored-dependencies 'transient)
(add-to-list 'elpaca-ignored-dependencies 'project)
;; https://github.com/progfolio/elpaca/wiki/Logging#auto-hiding-the-elpaca-log-buffer
(defvar +elpaca-hide-log-commands '(eval-buffer eval-region eval-defun eval-last-sexp org-ctrl-c-ctrl-c eros-eval-defun eros-eval-last-sexp elisp-eval-region-or-buffer)
"List of commands for which a successfully processed log is auto hidden.")
@ -129,5 +132,8 @@
(dolist (elt elts)
(add-to-list list-var elt t)))
;; Built-in in 29.1+, but we want the latest
(use-package transient)
(provide 'init-packages)
;;; init-packages.el ends here