From ee8212779c525b0a9f07ad395686b8e2265a873e Mon Sep 17 00:00:00 2001 From: Micheal Smith Date: Wed, 29 Oct 2025 19:56:50 -0500 Subject: [PATCH] Moved profiling section into its own file. --- config.org | 12 +----------- config/profiling.org | 12 ++++++++++++ 2 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 config/profiling.org diff --git a/config.org b/config.org index 1255885..963c250 100644 --- a/config.org +++ b/config.org @@ -202,17 +202,7 @@ features. #+INCLUDE: "config/auth.org" :minlevel 1 -* Profiling - -Sometimes if I experience slow start times I've found [[https://github.com/jschaf/esup][esup]] does this quickly and -without having to quit Emacs. - -#+begin_src emacs-lisp -(use-package esup - :ensure t - :config - (setq esup-depth 0)) -#+end_src +#+INCLUDE: "config/profiling.org" :minlevel 1 * General Settings diff --git a/config/profiling.org b/config/profiling.org new file mode 100644 index 0000000..442d0fe --- /dev/null +++ b/config/profiling.org @@ -0,0 +1,12 @@ +* Profiling + +Sometimes if I experience slow start times I've found [[https://github.com/jschaf/esup][esup]] does this quickly and +without having to quit Emacs. + +#+begin_src emacs-lisp +(use-package esup + :ensure t + :config + (setq esup-depth 0)) +#+end_src +