diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-27 21:05:06 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-27 21:05:06 -0500 |
| commit | b923cc07d9f62f3fd33e86324476a07436c412b3 (patch) | |
| tree | e585063d16041b8cb1c5d0557e41d8fea33b2d8b /init.el | |
| parent | 287e039e7e2809fee8e02aac733c32b8d6f300d4 (diff) | |
| download | dotemacs-b923cc07d9f62f3fd33e86324476a07436c412b3.tar.gz dotemacs-b923cc07d9f62f3fd33e86324476a07436c412b3.zip | |
refactor: Rename custom-file-buffer to custom-buffer-file
Renamed the module 'custom-file-buffer' to 'custom-buffer-file' to
ensure consistency across the codebase. This change affects module
imports and test files. Additionally, new module
'system-commands.el' has been created to handle system power and
session management commands, removing these functionalities from
'wip.el'.
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -29,7 +29,7 @@ (require 'custom-case) ;; operations for upper/lower/title case (require 'custom-comments) ;; operations with comments (require 'custom-datetime) ;; date/timestamp insertion in various formats -(require 'custom-file-buffer) ;; custom buffer and file operations and keymap +(require 'custom-buffer-file) ;; 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 @@ -110,7 +110,7 @@ (require 'org-contacts-config) ;; fully integrated org-mode contacts management (require 'org-drill-config) (require 'org-export-config) -(require 'org-gcal-config) +(require 'org-gcal-config) ;; bi directional sync google calendar for org-agenda (require 'org-refile-config) ;; refile org-branches (require 'org-roam-config) ;; personal knowledge management in org mode (require 'org-webclipper) ;; "instapaper" to org-roam workflow @@ -134,7 +134,7 @@ ;; ------------------------- Personal Workflow Related ------------------------- (require 'reconcile-open-repos) -(require 'local-repository) +(require 'local-repository) ;; local repository for easy config portability ;; ------------------------------- Entertainment ------------------------------- @@ -146,6 +146,7 @@ ;;(require 'wip) (require 'lorem-optimum) (require 'jumper) +(require 'system-commands) ;; ---------------------------------- Wrap Up ---------------------------------- |
