tvl-depot/configs/shared/emacs/.emacs.d/wpc/packages/wpc-flycheck.el

15 lines
291 B
EmacsLisp
Raw Normal View History

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