]> jturnerusa.dev Git - emacs.d/commitdiff
renamed load-local-lisp.el to load-lisp.el
authorJohn Turner <jturner.usa@gmail.com>
Fri, 26 Aug 2022 03:01:17 +0000 (23:01 -0400)
committerJohn Turner <jturner.usa@gmail.com>
Fri, 26 Aug 2022 03:01:17 +0000 (23:01 -0400)
.gitignore
init.el
load-lisp.el [new file with mode: 0644]
load-local-lisp.el [deleted file]

index 61e66544c73ee6cc461a681347b1c8f4c5311a7a..e10b82f834998dd816702edcb1158f74a886e350 100644 (file)
@@ -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 83f5793ad43a2f360633566c6aed9b0020203a5d..0f42efb0192c446af2ffe93fb65c00779230b4d8 100644 (file)
--- 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 (file)
index 0000000..bfad1ad
--- /dev/null
@@ -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 (file)
index bfad1ad..0000000
+++ /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)