diff options
author | noa | 2024-10-13 23:39:59 +0800 |
---|---|---|
committer | noa | 2024-10-13 23:39:59 +0800 |
commit | 46e2d9c60306421fe4fe38707f21ce2fe3a9a627 (patch) | |
tree | 7e2af3a546163a67dcbc6ce06e616e034ef7e2e7 | |
parent | a35951994c7566f41972ac0fff0ad40c0627a666 (diff) |
Record time statistics on loading emacs
-rw-r--r-- | emacs/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 7ccb79b..ea7f92a 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -7,6 +7,9 @@ (add-to-list 'load-path (expand-file-name (concat user-emacs-directory "site-lisp"))) +(use-package use-package + :custom (use-package-compute-statistics t)) + ;; Give me stats on garbage collection and startup time (setopt garbage-collection-messages t) (add-hook 'emacs-startup-hook |