From 228520f22203925f58bf02c003b787c7e0b89cdd Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sun, 23 Sep 2012 16:31:25 +0300 Subject: [PATCH] added $HOME/bin to the path env variable under osx --- prelude/prelude-osx.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prelude/prelude-osx.el b/prelude/prelude-osx.el index e08a816..f6a8484 100644 --- a/prelude/prelude-osx.el +++ b/prelude/prelude-osx.el @@ -2,7 +2,8 @@ ;; the shell. ;; If you're using homebrew or port, modifying the PATH is essential. (let (osx-paths) - (dolist (path '("/usr/local/bin" "/opt/local/bin" "/opt/local/sbin") (setenv "PATH" (concat osx-paths (getenv "PATH")))) + (dolist (path '("/usr/local/bin" "/opt/local/bin" "/opt/local/sbin" "$HOME/bin") + (setenv "PATH" (concat osx-paths (getenv "PATH")))) (push path exec-path) (setq osx-paths (concat (concat path ":") osx-paths))))