Files
.emacs.d/core/siren-core-package-overrides.el
Jim Myhrberg 03682066c7 feat(editor): update undo-tree to 0.8
Override the undo-tree package within straight.el to have it grab the
package directly from the official Git repo on GitLab.
2021-02-17 01:52:58 +00:00

19 lines
566 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 latest version of undo-tree from main git repo. The
;; package on elpa.gnu.org is quite old.
(undo-tree :type git :host gitlab
:repo "tsc25/undo-tree"
:branch "master")))))
(provide 'siren-core-package-overrides)
;;; siren-core-packages.el ends here