Emacs: Add flycheck-package.

This commit is contained in:
tastytea 2020-02-20 02:43:03 +01:00
parent 45d69be9e5
commit 5808879974
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,16 @@
;;; elisp.el --- Packages and settings for elisp. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-20T01:43:50+0100>
;;; Commentary:
;;; Code:
;; Checker for the metadata in Emacs Lisp files.
(use-package flycheck-package
:after (flycheck)
:config (flycheck-package-setup)
)
(provide 'programming/elisp)
;;; elisp.el ends here

View File

@ -1,6 +1,6 @@
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-18T17:19:45+0100>
;; Time-stamp: <2020-02-20T01:42:02+0100>
;;; Commentary:
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
@ -41,6 +41,7 @@
(require 'programming/common)
(require 'programming/c++)
(require 'programming/elisp)
(require 'programming/git)
(require 'programming/lsp)
(require 'programming/misc)