diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-12 14:41:58 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-12 14:42:29 -0500 |
| commit | b874f3f4bc6515dcb2766b59dfa4befbe66eee54 (patch) | |
| tree | c8d49875be1997d412228c78ba920f0502a12386 /init.el | |
| parent | d0670d7b171c02e87ad09c28916907eb27bcc247 (diff) | |
| download | dotemacs-b874f3f4bc6515dcb2766b59dfa4befbe66eee54.tar.gz dotemacs-b874f3f4bc6515dcb2766b59dfa4befbe66eee54.zip | |
maint: remaining custom functions grouped into separate modules
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -22,8 +22,15 @@ ;; -------------------------- Utilities And Libraries -------------------------- -(require 'custom-functions) ;; custom function library w/ keybindings +(require 'custom-case) ;; operations for upper/lower/title case +(require 'custom-comments) ;; operations with comments +(require 'custom-datetime) ;; date/timestamps in various formats (require 'custom-file-buffer) ;; custom buffer and file operations and keymap +(require 'custom-line-paragraph) ;; operations on lines and paragraphs +(require 'custom-misc) ;; miscellaneous functions +(require 'custom-ordering) ;; ordering and sorting operations +(require 'custom-text-enclose) ;; operations to append, prepend, and surround text +(require 'custom-whitespace) ;; whitespace operations (require 'external-open) ;; files to open outside of Emacs (require 'media-utils) ;; download and play urls |
