mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Instead let it be a something that needs to be manually started. It seems to make Emacs just that little slower overall.
17 lines
395 B
EmacsLisp
17 lines
395 B
EmacsLisp
;;; siren-explain-pause.el --- jimeh's Emacs Siren: explain-pause-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for explain-pause-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package explain-pause-mode
|
|
:straight (:type git :host github :repo "lastquestion/explain-pause-mode")
|
|
|
|
:custom
|
|
(explain-pause-blocking-too-long-ms 40))
|
|
|
|
(provide 'siren-explain-pause)
|
|
;;; siren-explain-pause.el ends here
|