diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-09 15:33:17 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-09 15:33:17 -0600 |
| commit | 7c90919de0ab52efbf3fc18072a44fdc5bca0cd7 (patch) | |
| tree | 427d54de9c91c47ec6e45cf09eef21514b6ef85a /init.el | |
| parent | e3fda13930b46820f2cbdf29b33d9ef3c99fea7f (diff) | |
feat:system: Add system utility library with executable check
Introduce a new `system-lib.el` module providing low-level system
utility functions, including function `cj/executable-exists-p` to
check for the availability of programs in PATH. Integrate this
library in `init.el`.
test(system): Add unit tests for executable check function
Create comprehensive unit tests for `cj/executable-exists-p` in
`system-lib.el`, ensuring coverage of normal, boundary and error
scenarios.
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -18,6 +18,7 @@ ;; ---------------------------- System Configuration --------------------------- +(require 'system-lib) ;; low-level system utility functions (require 'config-utilities) ;; enable for extra Emacs config debug helpers (require 'user-constants) ;; paths for files referenced in this config (require 'host-environment) ;; convenience functions re: host environment |
