Files
.emacs.d/modules/misc/siren-explain-pause.el
Jim Myhrberg 8814bf1303 feat(performance): Add explain-pause-mode
This might come in handy with debugging what causing slowdowns in emacs.
2020-05-19 21:47:34 +01: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