My initialization file is organized in org-mode
with src snippets. Is there a way I can profile it to see which snippets take the most time to evaluate? When my initialization file was in Elisp, I was able to profile it with ProfileDotEmacs, but that doesn't work for me anymore.
Here is how I load the Org file:
(org-babel-load-file "path/to/main.org")
Since the snippets are evaluated with Babel, maybe there's a way to tell Babel to output the execution time of each snippet?