;
; Load files matching lisp.d/*.el
(mapc
(lambda (path) (load-file path))
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
)
;END;