aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-09 15:33:17 -0600
committerCraig Jennings <c@cjennings.net>2025-11-09 15:33:17 -0600
commite8cde23d07dbe06d5808c5c5c79537054ee4a2bc (patch)
tree69f0aaa8a9917ee059d8b8ea5cdd73e682861f57 /init.el
parent8fe338d056106c17a97ff3ca1de96ebf2e92ce8f (diff)
downloaddotemacs-e8cde23d07dbe06d5808c5c5c79537054ee4a2bc.tar.gz
dotemacs-e8cde23d07dbe06d5808c5c5c79537054ee4a2bc.zip
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.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/init.el b/init.el
index cc5df3ce2..17d5e3153 100644
--- a/init.el
+++ b/init.el
@@ -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