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