Enable flycheck for Emacs Lisp by default

It used to be slow, but it's not the case anymore.  This should help identifying
problems in my ELisp code, but might cause some trouble on Windows.  Let's see …
This commit is contained in:
Daniel - 2020-11-14 18:41:29 +01:00
parent 3f10d6e415
commit 330a52a40f
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 1 deletions

View File

@ -2564,7 +2564,9 @@ With given ARG, display files in `db/important-document-path."
;; Lisp Dialects
(use-package elisp-mode
:config (add-hook 'emacs-lisp-mode-hook 'turn-on-lispy-when-available))
:config (progn
(add-hook 'emacs-lisp-mode-hook 'turn-on-lispy-when-available)
(add-hook 'emacs-lisp-mode-hook 'flycheck-mode)))
(use-package geiser
:commands (geiser-mode))