Files
.emacs.d/core/siren-core-package-overrides.el
Jim Myhrberg bd3e53bdc8 fix(packages): override undo-fu and undo-fu-session recipes
Both undo-fu and undo-fu-session are hosted on codeberg, which seems to
be down right now. Hence instead let's pull in these packages from the
mirrors on the emacsmirrors GitGub org.
2022-06-09 01:01:41 +01:00

37 lines
1.5 KiB
EmacsLisp

;;; siren-core-package-overrides.el --- jimeh's Emacs Siren: Package overrides
;;; Commentary:
;; List of custom package recipe overrides.
;;; Code:
(setq straight-recipe-overrides
'((nil . (
;; Override company-nginx recipe as the original repo was
;; deleted.
(company-nginx :type git :host github
:repo "emacsmirror/company-nginx"
:branch "master")
(undo-fu :type git :flavor melpa :host github
:repo "emacsmirror/undo-fu")
(undo-fu-session :type git :flavor melpa :host github
:repo "emacsmirror/undo-fu-session")
;; Override vertico recipe to fix issues with extensions.
(vertico :type git :host github :repo "minad/vertico"
:files (:defaults "extensions/*")
:includes (vertico-buffer
vertico-directory
vertico-flat
vertico-grid
vertico-indexed
vertico-mouse
vertico-multiform
vertico-quick
vertico-repeat
vertico-reverse
vertico-unobtrusive))))))
(provide 'siren-core-package-overrides)
;;; siren-core-packages.el ends here