Move confpkg code

This commit is contained in:
Kiana Sheibani 2024-03-30 17:37:53 -04:00
parent 48bee50fe6
commit 1842fa5211
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -86,7 +86,17 @@ Instead of documentation having to be bent around the restrictions of source cod
It's not the right tool for every codebase, but proper use of literate programming can make a program much, much easier to comprehend and maintain. This is especially true for configuration languages like Emacs Lisp, where much of the code is conceptually disconnected and can easily be split into categories. It's not the right tool for every codebase, but proper use of literate programming can make a program much, much easier to comprehend and maintain. This is especially true for configuration languages like Emacs Lisp, where much of the code is conceptually disconnected and can easily be split into categories.
*** =confpkg= ** Current Issues
*** Mail
My mail client currently requires GPG access to sync emails, which doesn't properly work. Using the mail client requires running ~mbsync -a~ externally instead.
*** Org Mode
A lot of my current Org mode configuration consists of relics of previous organizational systems, including the TODO states and capture templates. I don't currently use these, as most of my Org mode use has shifted towards Org-roam, so it might be a good idea to replace these with something more useful.
* =confpkg=
As part of their literate config, Tecosaur implemented =confpkg=, an embedded Emacs Lisp library that manages multiple aspects of config tangling: As part of their literate config, Tecosaur implemented =confpkg=, an embedded Emacs Lisp library that manages multiple aspects of config tangling:
@ -101,13 +111,14 @@ Luckily, I don't need to be able to understand code in order to do what I do bes
If you're reading the raw org file instead of the published version, the code for =confpkg= is below. It is mostly unchanged, aside from these tweaks: If you're reading the raw org file instead of the published version, the code for =confpkg= is below. It is mostly unchanged, aside from these tweaks:
- Prevent the code from being exported
- Reorganize to get rid of superfluous noweb references
- Change the package template to contain my information - Change the package template to contain my information
- Reorganize to get rid of superfluous noweb references
- Prevent the code from being exported
- Allow package statements anywhere in subconfig files, rather than only at the beginning
**** confpkg :noexport: ** confpkg :noexport:
***** Preparation *** Preparation
#+name: confpkg-prepare #+name: confpkg-prepare
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -126,7 +137,7 @@ If you're reading the raw org file instead of the published version, the code fo
<<confpkg-prepare()>> <<confpkg-prepare()>>
#+end_src #+end_src
***** Setup *** Setup
#+name: confpkg-setup #+name: confpkg-setup
#+begin_src emacs-lisp :results silent :noweb no-export #+begin_src emacs-lisp :results silent :noweb no-export
@ -388,7 +399,7 @@ If you're reading the raw org file instead of the published version, the code fo
#+call: confpkg-setup[:results none]() #+call: confpkg-setup[:results none]()
***** Confpkg Dispatch *** Confpkg Dispatch
#+name: confpkg #+name: confpkg
#+begin_src elisp :var name="" needs="" after="" pre="" prefix="config-" via="copy" :results silent raw :noweb no-export #+begin_src elisp :var name="" needs="" after="" pre="" prefix="config-" via="copy" :results silent raw :noweb no-export
@ -493,7 +504,7 @@ If you're reading the raw org file instead of the published version, the code fo
;;; %p.el ends here ;;; %p.el ends here
#+end_src #+end_src
***** Quieter Output *** Quieter Output
#+name: confpkg-quieter-output #+name: confpkg-quieter-output
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -512,7 +523,7 @@ If you're reading the raw org file instead of the published version, the code fo
#+call: confpkg-quieter-output() #+call: confpkg-quieter-output()
***** CLI *** CLI
#+begin_src emacs-lisp :tangle cli.el :noweb-ref none #+begin_src emacs-lisp :tangle cli.el :noweb-ref none
;;; cli.el -*- lexical-binding: t; -*- ;;; cli.el -*- lexical-binding: t; -*-
@ -524,7 +535,7 @@ If you're reading the raw org file instead of the published version, the code fo
(advice-add 'org-babel-execute-src-block :around #'doom-shut-up-a) (advice-add 'org-babel-execute-src-block :around #'doom-shut-up-a)
#+end_src #+end_src
***** Timings *** Timings
#+call: confpkg("Confpkg timings") #+call: confpkg("Confpkg timings")
@ -730,16 +741,6 @@ NODE defaults to the root node."
(pop-to-buffer buf))))) (pop-to-buffer buf)))))
#+end_src #+end_src
** Current Issues
*** Mail
My mail client currently requires GPG access to sync emails, which doesn't properly work. Using the mail client requires running ~mbsync -a~ externally instead.
*** Org Mode
A lot of my current Org mode configuration consists of relics of previous organizational systems, including the TODO states and capture templates. I don't currently use these, as most of my Org mode use has shifted towards Org-roam, so it might be a good idea to replace these with something more useful.
* Doom Modules * Doom Modules
One of Doom Emacs's most useful features is its modular configuration system, allowing configuration code to be sectioned into modules that can be enabled or customized individually. Doom provides a full suite of prewritten modules to enable. One of Doom Emacs's most useful features is its modular configuration system, allowing configuration code to be sectioned into modules that can be enabled or customized individually. Doom provides a full suite of prewritten modules to enable.