diff options
Diffstat (limited to 'Emacs/.config/emacs/init.el')
-rw-r--r-- | Emacs/.config/emacs/init.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/init.el b/Emacs/.config/emacs/init.el index 818091a..523ca74 100644 --- a/Emacs/.config/emacs/init.el +++ b/Emacs/.config/emacs/init.el @@ -33,7 +33,7 @@ (expand-file-name "straight/repos/straight.el/bootstrap.el" (or (bound-and-true-p straight-base-dir) - user-emacs-directory))) + user-emacs-directory))) (bootstrap-version 7)) (unless (file-exists-p bootstrap-file) (with-current-buffer @@ -44,6 +44,12 @@ (eval-print-last-sexp))) (load bootstrap-file nil 'nomessage)) +;; Setup benchmark to get current statistics - enable only if profiling. +;; (straight-use-package 'benchmark-init) +;; (require 'benchmark-init) +;; (add-hook 'after-init-hook 'benchmark-init/deactivate) +;; (benchmark-init/activate) + (setq use-package-enable-imenu-support t use-package-always-demand nil use-package-always-defer nil |