Files
.emacs.d/modules/misc/siren-explain-pause.el
Jim Myhrberg 98b4e800f5 fix(misc): do not enable explain-pause-mode automatically when emacs starts
Instead let it be a something that needs to be manually started. It
seems to make Emacs just that little slower overall.
2021-03-15 23:12:04 +00:00

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