From 330a52a40f996c3fc13be63c0a6a6cc8ab90812e Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 14 Nov 2020 18:41:29 +0100 Subject: [PATCH] Enable flycheck for Emacs Lisp by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 … --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 95c844a..30936f8 100644 --- a/init.el +++ b/init.el @@ -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))