.emacs.d/init.d/misc/misc.el
2020-05-29 17:21:13 +02:00

20 lines
469 B
EmacsLisp

;;; misc.el --- Stuff that fits no other category -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'basics/package-management)
;; Watchdog, noticing and explaining when Emacs acts slow.
(use-package explain-pause-mode
:demand t
:defer 4
:straight (explain-pause-mode
:type git
:host github
:repo "lastquestion/explain-pause-mode")
:config (explain-pause-mode t))
(provide 'misc)
;;; misc.el ends here