about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/wpc/packages/wpc-flycheck.el
blob: 66314af9877c5ada925c2394ff8d98f490990fdd (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)
;;; flycheck.el ends here