Change eval-after-load to with-eval-after-load

idk, I like the macro better
This commit is contained in:
Case Duckworth 2021-05-26 17:28:04 -05:00
parent 37841b08a8
commit 9d702afab8
1 changed files with 3 additions and 3 deletions

View File

@ -782,9 +782,9 @@
"M-g f" avy-goto-line
"M-g w" avy-goto-word-1
"C-c C-j" avy-resume)
(eval-after-load "isearch"
'(define-key isearch-mode-map (kbd "C-'") #'avy-isearch)))
(with-eval-after-load "isearch"
(define-key isearch-mode-map (kbd "C-'") #'avy-isearch)))
(setup (:straight (beginend))
(beginend-global-mode +1))