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

;;; Commentary:

;;; Code:

(require-package 'flycheck)

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

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