blob: d7bb834a625761821fca3162ef943a3e292014da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; 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)
;;; wpc-flycheck.el ends here
|