abo-abo/lispy@38a7df4 -> abo-abo/lispy@e9731aa emacs-evil/evil-collection@b6025cf -> emacs-evil/evil-collection@9be3805 emacs-evil/evil@1b3db63 -> emacs-evil/evil@b237462 emacs-straight/adaptive-wrap@91e939b -> emacs-straight/adaptive-wrap@0d5b4a0 emacsorphanage/god-mode@02a402b -> emacsorphanage/god-mode@1d7d647 hlissner/doom-snippets@f7747da -> hlissner/doom-snippets@5c0eb5b justinbarclay/parinfer-rust-mode@f130fa0 -> justinbarclay/parinfer-rust-mode@c2c1bbe magnars/multiple-cursors.el@7b13b03 -> magnars/multiple-cursors.el@616fbdd noctuid/lispyville@89316f0 -> noctuid/lispyville@9c14bed redguardtoo/evil-nerd-commenter@b8ac35f -> redguardtoo/evil-nerd-commenter@118bebd willghatch/evil-textobj-anyblock@29280cd -> willghatch/evil-textobj-anyblock@29280cd
18 lines
801 B
EmacsLisp
18 lines
801 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; editor/parinfer/packages.el
|
|
|
|
(if (featurep! +rust)
|
|
(package! parinfer-rust-mode :pin "c2c1bbec6cc7dad4f546868aa07609b8d58a78f8")
|
|
(when (featurep! :editor evil)
|
|
;; Parinfer uses `evil-define-key' without loading evil, so if evil is
|
|
;; installed *after* parinfer, parinfer will throw up void-function errors.
|
|
;; because evil-define-key (a macro) wasn't expanded at compile-time. So we
|
|
;; make sure evil is installed before parinfer...
|
|
(package! evil)
|
|
;; ...and that it can see `evil-define-key' if evil was installed in a
|
|
;; separate session:
|
|
(autoload 'evil-define-key "evil-core" nil nil 'macro))
|
|
|
|
(package! parinfer
|
|
:recipe (:host github :repo "emacsattic/parinfer")
|
|
:pin "8659c99a9475ee34af683fdf8f272728c6bebb3a"))
|