mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
23 lines
862 B
EmacsLisp
23 lines
862 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 . (
|
|
;; Use custom fork of json-snatcher which fixes auto-loading
|
|
;; issue with its kill-buffer-hook. More details:
|
|
;; https://github.com/Sterlingg/json-snatcher/pull/12
|
|
(json-snatcher :type git :host github
|
|
:repo "Sterlingg/json-snatcher"
|
|
:branch "master"
|
|
:fork (:host github
|
|
:repo "jimeh/json-snatcher"
|
|
:branch "fix-kill-buffer-hook"))))))
|
|
|
|
(provide 'siren-core-package-overrides)
|
|
;;; siren-core-packages.el ends here
|