From 2e3aad94462431d58c4a7742bb43df8b90fdc36a Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 23 Jun 2022 17:34:46 +0200 Subject: [PATCH] Added flycheck --- config.org | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config.org b/config.org index 5a3e065..cd71702 100644 --- a/config.org +++ b/config.org @@ -1509,6 +1509,17 @@ Source: [[https://github.com/company-mode/company-mode][GitHub: company-mode]] company-dabbrev-downcase nil)) #+end_src +** flycheck + +Flycheck is a syntax checking extension for Emacs which uses specialized command line tools for the languages it supports. Next to the linting and highlighting of errors it does on its own it also integrates nicely into lsp-mode. + +Source: [[https://www.flycheck.org][flycheck.org]] + +#+begin_src emacs-lisp +(use-package flycheck + :init (global-flycheck-mode)) +#+end_src + ** lsp Language Server Protocoll capabilities for Emacs