From e89798fb461ea70f3d71f81e7918794a5e21d8f8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 30 Nov 2012 13:11:04 -0500 Subject: [PATCH] Compute our load-path automatically from the path of .emacs. Remove unused load-paths.el. --- .emacs | 5 ++--- load-paths.el | 10 ---------- 2 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 load-paths.el diff --git a/.emacs b/.emacs index 9cea735..68341dd 100644 --- a/.emacs +++ b/.emacs @@ -56,9 +56,8 @@ ;; 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")) diff --git a/load-paths.el b/load-paths.el deleted file mode 100644 index 330a4ed..0000000 --- a/load-paths.el +++ /dev/null @@ -1,10 +0,0 @@ -(setq load-path - (append - (list - - ;; From ~/.home - "~/.home/emacs/modes/basic-mode/" - - ) - - load-path)) -- 2.43.2