10 lines
226 B
EmacsLisp
10 lines
226 B
EmacsLisp
|
;;; init-flycheck.el --- Flycheck configuration
|
||
|
;;; Commentary:
|
||
|
;;; Code:
|
||
|
|
||
|
(when (maybe-require-package 'flycheck)
|
||
|
(add-hook 'after-init-hook 'global-flycheck-mode) )
|
||
|
|
||
|
(provide 'init-flycheck)
|
||
|
;;; init-flycheck.el ends here
|