From dea6414230061aa4aa1b4be91b063b9b89a41aa7 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 24 Feb 2025 10:43:38 +0000 Subject: [PATCH] Adjust flymake display config --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index c6bdb24..00116f3 100644 --- a/init.el +++ b/init.el @@ -1112,7 +1112,9 @@ ("C-c C-," . flymake-goto-prev-error)) :hook ((prog-mode yaml-ts-mode) . (lambda () (flymake-mode +1))) :custom - (flymake-show-diagnostics-at-end-of-line 'short)) + (flymake-indicator-type 'fringes) + (flymake-fringe-indicator-position 'right-fringe) + (flymake-show-diagnostics-at-end-of-line nil)) (use-package flymake-shellcheck :if (package-installed-p 'flymake-shellcheck)