2018-04-25 19:26:53 +02:00
|
|
|
;;; flycheck.el --- My flycheck configuration -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Hosts my Flycheck preferences
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(use-package flycheck
|
|
|
|
:config
|
|
|
|
(global-flycheck-mode))
|
|
|
|
|
|
|
|
(provide 'wpc-flycheck)
|
2019-01-13 20:33:17 +01:00
|
|
|
;;; wpc-flycheck.el ends here
|