mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
24 lines
377 B
EmacsLisp
24 lines
377 B
EmacsLisp
;;; siren-packages.el --- jimeh's Emacs Siren: avy configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for packages.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-flycheck)
|
|
|
|
(use-package package-lint
|
|
:defer t)
|
|
|
|
(use-package package-build
|
|
:defer t)
|
|
|
|
(use-package flycheck-package
|
|
:defer t
|
|
:config
|
|
(flycheck-package-setup))
|
|
|
|
(provide 'siren-packages)
|
|
;;; siren-packages.el ends here
|