13 lines
284 B
EmacsLisp
13 lines
284 B
EmacsLisp
;;; 06flycheck -- 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 '06flycheck)
|
|
;;; 06flycheck.el ends here
|