Skip to content

Commit

Permalink
fix: disable packages causing problems on the last build
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Mar 24, 2023
1 parent 22f9a6d commit 6b2c3ae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions core/me-evil.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
:straight t
:hook (minemacs-after-startup . evil-snipe-mode)
:hook (minemacs-after-startup . evil-snipe-override-mode)
;; TEMP: Disable. It triggers (invalid-function 2) on Emacs 29 (at least after
;; 786de66ec3c4cff90cafd0f8a68f9bce027e9947)
:disabled
:custom
(evil-snipe-scope 'buffer)
(evil-snipe-smart-case t)
Expand Down
3 changes: 3 additions & 0 deletions modules/me-editor.el
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@

(use-package expand-region
:straight t
;; TEMP: Disable it. `er/expand-region' expands to the whole buffer in Emacs
;; 29 (at least after 786de66ec3c4cff90cafd0f8a68f9bce027e9947)
:disabled
:init
(+vmap! "v" #'er/expand-region))

Expand Down
5 changes: 4 additions & 1 deletion modules/me-vc.el
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@
:init
(+map! "gt" #'git-timemachine-toggle)
:custom
(git-timemachine-show-minibuffer-details t))
(git-timemachine-show-minibuffer-details t)
:config
;; TEMP: Fix a strange error triggred by `git-timemachine--erm-workaround'
(fset 'git-timemachine--erm-workaround #'ignore))

;; Enforce git commit conventions.
;; See: chris.beams.io/posts/git-commit/
Expand Down

0 comments on commit 6b2c3ae

Please sign in to comment.