mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
21 lines
836 B
EmacsLisp
21 lines
836 B
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 all-the-icons-completion to use fork with more
|
|
;; features.
|
|
(all-the-icons-completion :type git :flavor melpa :host github :repo "iyefrat/all-the-icons-completion"
|
|
:fork (:host github :repo "MintSoup/all-the-icons-completion"))
|
|
;; Override vertico recipe to fix issues with extensions.
|
|
(vertico :type git :host github :repo "minad/vertico"
|
|
:files (:defaults "extensions/*" (:exclude ".git")))))))
|
|
|
|
(provide 'siren-core-package-overrides)
|
|
;;; siren-core-packages.el ends here
|