From ca81f7ed4f4c909a4077a0ba1dbdd7d6ab1d4170 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 3 Feb 2025 11:49:59 -0500 Subject: [PATCH] Add Flymake settings --- init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/init.el b/init.el index d40cb28..d9356ed 100644 --- a/init.el +++ b/init.el @@ -455,4 +455,15 @@ (provide 'init) +;;; Flymake + +(setq flymake-fringe-indicator-position 'left-fringe) +(setq flymake-show-diagnostics-at-end-of-line nil) + +;; Suppress the display of Flymake error counters when there are no errors. +(setq flymake-suppress-zero-counters t) + +;; Disable wrapping around when navigating Flymake errors. +(setq flymake-wrap-around nil) + ;;; init.el ends here