blob: 9a66c22762b2d205e5506bef4784c5fac506b569 (
plain)
1
2
3
4
5
6
|
;; Flycheck shows syntax errors for many languages
;;; https://github.com/flycheck/flycheck
(use-package flycheck)
(add-hook 'prog-mode-hook 'flycheck-mode)
(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
(setq flycheck-indication-mode nil)
|