Files
.emacs.d/core/siren-core-package-overrides.el
Jim Myhrberg 3bd155cb79 feat(editor): try snap-indent as a replacement for yank-indent
Currently trying via my own fork of snap-indent, which has a PR pending.
2023-05-01 00:01:45 +01:00

24 lines
1.1 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 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 snap-indent to use fork with more features.
(snap-indent :type git :flavor melpa :host github :repo "jeffvalk/snap-indent"
:fork (:host github :repo "jimeh/snap-indent" :branch "various-features"))
;; 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