mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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.
37 lines
1.5 KiB
EmacsLisp
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
|