2020-05-29 17:19:56 +02:00
|
|
|
;;; 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
|
2020-05-29 17:21:13 +02:00
|
|
|
:defer 4
|
2020-05-30 11:18:36 +02:00
|
|
|
:diminish explain-pause-mode
|
2020-05-29 17:19:56 +02:00
|
|
|
:straight (explain-pause-mode
|
|
|
|
:type git
|
|
|
|
:host github
|
|
|
|
:repo "lastquestion/explain-pause-mode")
|
|
|
|
:config (explain-pause-mode t))
|
|
|
|
|
2020-05-30 08:14:58 +02:00
|
|
|
(provide 'misc/misc)
|
2020-05-29 17:19:56 +02:00
|
|
|
;;; misc.el ends here
|