!/.gitignore
!/init.el
!/load-config.el
-!/load-local-lisp.el
+!/load-lisp.el
!/custom.el
!/themes
!/config
(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)
--- /dev/null
+(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)
+++ /dev/null
-(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)