Add erefactor

This commit is contained in:
David Morgan 2023-02-01 06:59:16 +00:00
parent d5c3b0e2cc
commit 6a4b65d198
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,8 @@ Start `ielm' if it's not already running."
(rainbow-mode +1)
(rainbow-delimiters-mode +1)
(setq mode-name "EL")
(recompile-init-lisp-on-save)))
(recompile-init-lisp-on-save)
(define-key emacs-lisp-mode-map "\C-c\C-v" erefactor-map)))
:bind
(:map emacs-lisp-mode-map
(("C-c C-z" . visit-ielm)
@ -56,5 +57,8 @@ Start `ielm' if it's not already running."
("C-c e d" . debug-on-entry)
("C-c e e" . toggle-debug-on-error))))
(use-package erefactor)
(provide 'init-emacs-lisp)
;;; init-emacs-lisp.el ends here