Use new elpaca-write-lock-file function
Some checks failed
/ Test config on 20 (push) Failing after 45s

This commit is contained in:
Maciej 2025-02-04 08:39:24 +02:00
parent c2aebb5450
commit ef16f1af55
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
3 changed files with 1140 additions and 984 deletions

View file

@ -39,6 +39,9 @@
(setopt vertico-resize t) ;; Grow and shrink the vertico minibufffer
(setopt vertico-cycle t) ;; Cycle completion
;; Use H-enter to submit current value instead of first matching candidate
(keymap-set vertico-map "H-<return>" 'vertico-exit-input)
;; Add working page up /down
(keymap-set vertico-map "<next>" 'vertico-scroll-up)
(keymap-set vertico-map "<prior>" 'vertico-scroll-down))

View file

@ -70,7 +70,8 @@
(defvar elpaca-use-package)
(elpaca elpaca-use-package (elpaca-use-package-mode))
(elpaca-load-lockfile (concat user-emacs-directory "elpaca.lock"))
;; (elpaca-load-lockfile (concat user-emacs-directory "elpaca.lock"))
;; (setopt elpaca-lock-file (concat user-emacs-directory "elpaca.lock"))
(use-package benchmark-init :ensure (:wait t)
:config
@ -79,7 +80,7 @@
(defun icejam-elpaca-write-lock ()
"Write elpaca lock file."
(interactive)
(elpaca-write-lockfile (concat user-emacs-directory "elpaca.lock")))
(elpaca-write-lock-file (concat user-emacs-directory "elpaca.lock")))
;; I don't know why this needs to be here and with a lisp directory, but
;; normal subdirs.el file doesn't work.