From 6a67b1418c2e16db11cfa82b47a40610920365ae Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 9 Mar 2024 17:23:15 -0500 Subject: [PATCH] fix(emacs): disable annoying latex tex-chktex syntax checker Signed-off-by: Lucas Sta Maria --- .emacs.d/include/latexconfig.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/include/latexconfig.el b/.emacs.d/include/latexconfig.el index a97599e..1cf624d 100644 --- a/.emacs.d/include/latexconfig.el +++ b/.emacs.d/include/latexconfig.el @@ -92,6 +92,9 @@ (auto-fill-mode 1) (display-fill-column-indicator-mode 1) (set-fill-column 100) + + (setq-local flycheck-disabled-checkers + '(tex-chktex)) (keymap-local-set "C-c C-c" #'custom-compile-latex) (keymap-local-set "C-c C-z" #'open-out-pdf)