Files
emacs.d/site-start.d/02-load-path.el
Ralf Zerres 6999de3a7f update magit to v 3.1.1
* add lisp path fo git version
* use forge when starting magit in line
* remove magithub dependencies

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-07-25 12:47:34 +02:00

13 lines
365 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")
(add-to-list 'load-path "~/.emacs.d/site-lisp/magit/lisp")
(provide '02-load-path)
;;; 02-load-path.el ends here