mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
feat(performance): Add explain-pause-mode
This might come in handy with debugging what causing slowdowns in emacs.
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
(require 'siren-flycheck)
|
||||
|
||||
;; Misc.
|
||||
(require 'siren-explain-pause)
|
||||
(require 'siren-grip)
|
||||
(require 'siren-restart-emacs)
|
||||
(require 'siren-zone)
|
||||
|
||||
16
modules/misc/siren-explain-pause.el
Normal file
16
modules/misc/siren-explain-pause.el
Normal 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
|
||||
Reference in New Issue
Block a user