Replace lambda with named function

This commit is contained in:
David Morgan 2021-09-23 15:52:59 +01:00
parent 0c5ce2b825
commit 3a1d22524c
1 changed files with 4 additions and 4 deletions

View File

@ -22,11 +22,11 @@
:config
(cljr-add-keybindings-with-prefix "C-c C-m")
(setq cljr-suppress-no-project-warning t)
(defun clj-refactor-hook-fn ()
(clj-refactor-mode 1)
(yas-minor-mode 1))
:hook
(clojure-mode .
(lambda ()
(clj-refactor-mode 1)
(yas-minor-mode 1))))
(clojure-mode . clj-refactor-hook-fn))
(use-package cider
:diminish