emacs/06flycheck.el

6 lines
180 B
EmacsLisp

;; Use flycheck globally to check syntax and compile languages
(use-package flycheck
:commands flycheck-define-checker
:ensure t
:defer t
:config (global-flycheck-mode t))