diff options
| author | Craig Jennings <c@cjennings.net> | 2025-08-31 16:57:26 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-08-31 16:57:26 -0500 |
| commit | e50e1e8c3c198dc75f3be913f6b4b1047880eeb6 (patch) | |
| tree | f1eecaa2abf9b09249bda5629f1a0451208755f1 /init.el | |
| parent | 921cfcd8ce348046e67969e4c10c263f890ce3e2 (diff) | |
| download | dotemacs-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.el | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -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 |
