15 lines
291 B
EmacsLisp
15 lines
291 B
EmacsLisp
|
;;; 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)
|
||
|
;;; flycheck.el ends here
|