summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-flycheck.el~
blob: d124711b7ef953f8a7421a76b77b695a45e98c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; flycheck --- All flycheck configuration

;;; Commentary:

;;; Code:

(package-install 'flycheck)

(global-flycheck-mode)
(setq flycheck-check-syntax-automatically '(mode-enabled save))

(provide 'init-flycheck)
;;; init-flycheck ends here