Files
emacs.d/site-start.d/02-load-path.el
2020-06-24 01:29:33 +02:00

12 lines
306 B
EmacsLisp

;;; 02-load-path.el --- customize loadpath
;;; Commentary:
;; load-path will enable to autoload your custom Lisp code
;; that is not handled via packages that can be handled with use-package
;;; Code:
(add-to-list 'load-path "~/.emacs.d/site-lisp")
(provide '02-load-path)
;;; 02-load-path.el ends here