Skip to content

Commit

Permalink
fix(selection-highlight): delay enabling it by 2.0 to avoid issues
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Mar 4, 2024
1 parent fd4994d commit d135281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/me-editor.el
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

(use-package selection-highlight-mode
:straight (:host github :repo "balloneij/selection-highlight-mode")
:hook (minemacs-first-file . selection-highlight-mode)
:hook (minemacs-first-file . (lambda () (run-with-timer 2.0 nil #'selection-highlight-mode))) ; Starting it without a delay can cause issues
:custom-face (selection-highlight-mode-match-face ((t (:background "lavender")))))

(use-package highlight-indent-guides
Expand Down

0 comments on commit d135281

Please sign in to comment.