emacs/05flycheck.el

13 lines
284 B
EmacsLisp

;;; 05flycheck -- summary
;;; Commentary:
;;; Code:
;; 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))
(provide '05flycheck)
;;; 05flycheck.el ends here