feat(performance): Add explain-pause-mode

This might come in handy with debugging what causing slowdowns in emacs.
This commit is contained in:
2020-05-19 21:47:34 +01:00
parent a71fc70e66
commit 8814bf1303
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
;;; 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