.emacs.d/init.d/programming/elisp.el

19 lines
392 B
EmacsLisp
Raw Normal View History

2020-02-20 02:43:03 +01:00
;;; elisp.el --- Packages and settings for elisp. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-18T14:57:56+0100>
2020-02-20 02:43:03 +01:00
;;; Commentary:
;;; Code:
(require 'basics/package-management)
2020-02-20 02:43:03 +01:00
;; Checker for the metadata in Emacs Lisp files.
(use-package flycheck-package
:after (flycheck)
;; :pin melpa
:config (flycheck-package-setup))
2020-02-20 02:43:03 +01:00
(provide 'programming/elisp)
;;; elisp.el ends here