summaryrefslogtreecommitdiff
blob: b0e3543dbbb51964c5bb9aa12b5cc068bc8c9a50 (plain)
1
2
3
4
5
6
7
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"))