Prevent duplicate ns declarations in new clj files

This commit is contained in:
David Morgan 2022-06-10 13:30:14 +01:00
parent 6f3370ebe7
commit 8621c1ee2f
1 changed files with 3 additions and 1 deletions

View File

@ -19,9 +19,11 @@
:diminish
:after yasnippet
:bind ("C-c '" . hydra-cljr-help-menu/body)
:custom
(cljr-suppress-no-project-warning t)
(cljr-add-ns-to-blank-clj-files nil) ; disable clj-refactor adding ns to blank files
: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))