From abc4e6cc310099e2b1994155784ab2c4ef36f9b0 Mon Sep 17 00:00:00 2001
From: Jessie Hildebrandt <jessieh@jessieh.net>
Date: Wed, 8 Jun 2022 16:37:55 -0400
Subject: [PATCH] Make flycheck less aggressive

---
 init.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/init.el b/init.el
index 1e60d6a..6849b41 100644
--- a/init.el
+++ b/init.el
@@ -635,6 +635,8 @@
   (flycheck-python-flake8-executable "flake8")
   (flycheck-python-pylint-executable "pylint")
   (flycheck-python-mypy-executable "mypy")
+  (flycheck-check-syntax-automatically '(save idle-change mode-enabled))
+  (flycheck-idle-change-delay 2)
   :bind
   ("C-c e" . flycheck-list-errors))