Files
.emacs.d/modules/misc/siren-explain-pause.el

20 lines
429 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)
:config
(explain-pause-mode))
(provide 'siren-explain-pause)
;;; siren-explain-pause.el ends here