Added flycheck

This commit is contained in:
Marcel Kapfer 2022-06-23 17:34:46 +02:00
parent 52186554a0
commit 2e3aad9446
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 11 additions and 0 deletions

View File

@ -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