diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-23 00:15:14 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-23 00:15:14 -0500 |
| commit | bd559d3b87438469fb27c6c5da63747df451f3ff (patch) | |
| tree | 516652c77741824f0c1405e28a19b3acd218fd18 /modules/wrap-up.el | |
| parent | 520dc8f3d31d590f8990087c427e6ca8bb43363b (diff) | |
| download | dotemacs-bd559d3b87438469fb27c6c5da63747df451f3ff.tar.gz dotemacs-bd559d3b87438469fb27c6c5da63747df451f3ff.zip | |
refactor: unify and simplify key binding setups
Optimized key binding configurations across modules for consistency
and reduced redundancy. Improved conditional requiring to handle
errors gracefully in `music-config.el`, ensuring robustness across
different machine environments. Eliminated comments clutter and
adjusted function definitions to adhere to revised standards.
Diffstat (limited to 'modules/wrap-up.el')
| -rw-r--r-- | modules/wrap-up.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/wrap-up.el b/modules/wrap-up.el index f18411896..b00d56a87 100644 --- a/modules/wrap-up.el +++ b/modules/wrap-up.el @@ -23,8 +23,9 @@ (defun cj/bury-buffers-after-delay () "Run cj/bury-buffers after a delay." (run-with-timer 1 nil 'cj/bury-buffers)) - (add-hook 'emacs-startup-hook 'cj/bury-buffers-after-delay) +(cj/log-silently "<-- end of init file.") + (provide 'wrap-up) ;;; wrap-up.el ends here |
