Remove unused load-paths.el.
;; Don't leave backups everywhere.
(setq backup-inhibited t)
-;; Add this to load-path manually, then add the rest in load-paths.el
-(add-to-list 'load-path "~/.home/emacs/")
-(load-library "load-paths")
+;; Add the directory containing .emacs to the load-path.
+(add-to-list 'load-path (file-name-directory (file-truename user-init-file)))
(if (eq system-type 'cygwin)
(load-library "win32"))
+++ /dev/null
-(setq load-path
- (append
- (list
-
- ;; From ~/.home
- "~/.home/emacs/modes/basic-mode/"
-
- )
-
- load-path))