From 28b9ce63896810ee7f19f346dd6f011d87cc64b7 Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Thu, 12 Oct 2023 11:54:16 +0800 Subject: [PATCH] perf: never start checking buffer automatically. --- lisp/init-flymake.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/init-flymake.el b/lisp/init-flymake.el index 2eb93f00a..92dd56a45 100644 --- a/lisp/init-flymake.el +++ b/lisp/init-flymake.el @@ -33,7 +33,8 @@ (use-package flymake :diminish :hook (prog-mode . flymake-mode) - :init (setq flymake-fringe-indicator-position 'right-fringe) + :init (setq flymake-no-changes-timeout nil + flymake-fringe-indicator-position 'right-fringe) :config (setq elisp-flymake-byte-compile-load-path (append elisp-flymake-byte-compile-load-path load-path)))