summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-31 16:57:26 -0500
committerCraig Jennings <c@cjennings.net>2025-08-31 16:57:26 -0500
commite50e1e8c3c198dc75f3be913f6b4b1047880eeb6 (patch)
treef1eecaa2abf9b09249bda5629f1a0451208755f1 /init.el
parent921cfcd8ce348046e67969e4c10c263f890ce3e2 (diff)
downloaddotemacs-e50e1e8c3c198dc75f3be913f6b4b1047880eeb6.tar.gz
dotemacs-e50e1e8c3c198dc75f3be913f6b4b1047880eeb6.zip
(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
Diffstat (limited to 'init.el')
-rw-r--r--init.el16
1 files changed, 9 insertions, 7 deletions
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