summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test-plans/dotemacs.initsplit')
-rw-r--r--test-plans/dotemacs.initsplit8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-plans/dotemacs.initsplit b/test-plans/dotemacs.initsplit
new file mode 100644
index 0000000..b0e3543
--- /dev/null
+++ b/test-plans/dotemacs.initsplit
@@ -0,0 +1,8 @@
+(defconst toc:emacs-config-dir "~/" "")
+(defun toc:load-config-file (filelist)
+ (dolist (file filelist)
+ (load (expand-file-name
+ (concat toc:emacs-config-dir file)))
+ (message "Loaded config file:%s" file)
+ ))
+(toc:load-config-file '("test"))