mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Make use of use-package's :bind option whenever possible. - Make use of use-package's :hook option whenever possible. - Rename and move all mode setup functions into use-package's :init step. - Other minor misc fixes and tweaks to a few modules.
21 lines
353 B
EmacsLisp
21 lines
353 B
EmacsLisp
;;; siren-package-lint.el --- jimeh's Emacs Siren: avy configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for package-lint.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-flycheck)
|
|
|
|
(use-package package-lint
|
|
:defer t)
|
|
|
|
(use-package flycheck-package
|
|
:defer t
|
|
:config
|
|
(flycheck-package-setup))
|
|
|
|
(provide 'siren-package-lint)
|
|
;;; siren-package-lint.el ends here
|