;;; 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