From: John Turner Date: Fri, 26 Aug 2022 03:01:17 +0000 (-0400) Subject: renamed load-local-lisp.el to load-lisp.el X-Git-Url: https://jturnerusa.dev/gitweb/?a=commitdiff_plain;h=3cc613b5091b0a2daab1b59b081743c463440692;p=emacs.d renamed load-local-lisp.el to load-lisp.el --- diff --git a/.gitignore b/.gitignore index 61e6654..e10b82f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ !/.gitignore !/init.el !/load-config.el -!/load-local-lisp.el +!/load-lisp.el !/custom.el !/themes !/config diff --git a/init.el b/init.el index 83f5793..0f42efb 100644 --- a/init.el +++ b/init.el @@ -22,7 +22,7 @@ (load custom-file)) (load (file-name-concat user-emacs-directory "load-config")) -(load (file-name-concat user-emacs-directory "load-local-lisp")) +(load (file-name-concat user-emacs-directory "load-lisp")) (cua-mode 1) (recentf-mode 1) diff --git a/load-lisp.el b/load-lisp.el new file mode 100644 index 0000000..bfad1ad --- /dev/null +++ b/load-lisp.el @@ -0,0 +1,4 @@ +(let ((local-lisp-directory (file-name-concat user-emacs-directory "lisp"))) + (add-to-list 'load-path (file-name-concat local-lisp-directory "man-wrapper"))) + +(require 'man-wrapper) diff --git a/load-local-lisp.el b/load-local-lisp.el deleted file mode 100644 index bfad1ad..0000000 --- a/load-local-lisp.el +++ /dev/null @@ -1,4 +0,0 @@ -(let ((local-lisp-directory (file-name-concat user-emacs-directory "lisp"))) - (add-to-list 'load-path (file-name-concat local-lisp-directory "man-wrapper"))) - -(require 'man-wrapper)