The Complete Computer

Run Hooks After init

LifeTechEmacsArcology
emacs-lisp source: 
(provide 'cce/run-hooks)

This code runs at the end of the init file generated in my Index of CCE Functionality . Throughout the CCE, there's code which attaches functions to after-cce-hook ((deadgrep "after-cce-hook") to take a look), this makes sure they're run after everything else is initialized.

emacs-lisp source: 
(add-hook 'after-cce-hook (lambda () (message "The Complete Computing Environment has been loaded"))) (run-hooks #'after-cce-hook)