From 0a752577fcab0f2db87969cdfec3636d2ba89afc Mon Sep 17 00:00:00 2001 From: "Jaisser J. Sanguino" Date: Mon, 20 Apr 2026 11:49:59 -0300 Subject: [PATCH] fix(lsp): Disable flycheck global for org-mode by default --- configs/init-lsp.el | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/init-lsp.el b/configs/init-lsp.el index ca4a607..977b93b 100644 --- a/configs/init-lsp.el +++ b/configs/init-lsp.el @@ -79,6 +79,7 @@ (use-package flycheck :init (global-flycheck-mode) :config + (setq-default flycheck-global-modes '(not org-mode)) (setq flycheck-indication-mode nil flycheck-phpcs-standard "PSR12"))