From e50e1e8c3c198dc75f3be913f6b4b1047880eeb6 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 31 Aug 2025 16:57:26 -0500 Subject: (refactor) custom functions - Pull in custom commenting functions from prog-comments.el - categorize similar functions and add to proper key maps - better comments to explain functions - wrapped upcase and downcase functions to actually dwim - modified readable time format - removed strip-ctrl-m -- unused and didn't function correctly - removed wrap-region-as-code-span -- unused & redundant with other wrap funcs - renamed some functions to clarify purpose --- init.el | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index 2b5712eb..46881c14 100644 --- a/init.el +++ b/init.el @@ -70,18 +70,15 @@ (require 'erc-config) (require 'eww-config) (require 'httpd-config) -(require 'local-repository) ;; wip -(require 'mail-config) +(require 'mail-config) ;; email using mu4e and org-msg (require 'markdown-config) -(require 'record-desktop) (require 'weather-config) ;; utility to display the weather ;; -------------------------------- Programming -------------------------------- (require 'prog-general) -(require 'prog-comments) -(require 'vc-config) -(require 'treesitter-config) +(require 'vc-config) ;; version control packages and keybindings +(require 'treesitter-config) ;; treesitter language syntax highlighting (require 'flycheck-config) ;; linting for all languages including human ones (require 'prog-lsp) (require 'prog-training) @@ -112,10 +109,15 @@ ;; ------------------------- Personal Workflow Related ------------------------- (require 'reconcile-open-repos) +(require 'record-desktop) +(require 'local-repository) ;; ---------------------------------- Wrap Up ---------------------------------- -(require 'test-code) (require 'wrap-up) +;; ---------------------------------- In Test ---------------------------------- + +(require 'test-code) + ;;; init.el ends here -- cgit v1.2.3