Skip to content

Commit

Permalink
fix(init): require compat, fixes issues on Emacs 29
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 12, 2024
1 parent f6ca225 commit b4ed56b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/me-builtin.el
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ or file path may exist now."
;; PEP8 recommends two spaces
(+setq-hook! python-mode comment-inline-offset 2))

(use-package compat
:ensure t)

(use-package crm
:config
;; From: https://github.com/a-schaefers/spartan-emacs/blob/main/spartan-layers/spartan-vertico.el
Expand Down
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ minemacs-lazy' can be loaded."

(unless minemacs-builtin-only-p
(require 'me-bootstrap)
(require 'compat) ; Needed by other packages
(mapc #'+load (mapcar (apply-partially #'format "%s%s.el" minemacs-modules-dir) minemacs-modules)))

(run-hooks 'minemacs-after-loading-modules-hook)
Expand Down

0 comments on commit b4ed56b

Please sign in to comment.