.emacs.d/pkg/flycheck.el

10 lines
259 B
EmacsLisp

;; On-the-fly syntax checking.
;; https://github.com/flycheck/flycheck
(use-package flycheck
:ensure t
:defer t
:diminish flycheck-mode
:config
(setq flycheck-standard-error-navigation nil)
(add-hook 'after-init-hook #'global-flycheck-mode))