From 5065459e6b7dd32ebcf9c44c3e65afcc3c3ea83f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 8 Sep 2016 13:10:54 -0700 Subject: [PATCH] Set /usr/bin as path in shell path --- dotfiles/lib/shellpath.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dotfiles/lib/shellpath.sh b/dotfiles/lib/shellpath.sh index de132c3e..dbe0b04e 100644 --- a/dotfiles/lib/shellpath.sh +++ b/dotfiles/lib/shellpath.sh @@ -7,7 +7,8 @@ function _setup_env { # This is in shellenv.sh now _python_setup - add_to_path "$HOME/.local/bin" "$HOME/.lib/bin" "$HOME/bin" "/usr/local/bin" --before + add_to_path "$HOME/.local/bin" "$HOME/.lib/bin" "$HOME/bin" --before + add_to_path "/usr/local/sbin" "/usr/local/bin" "/usr/bin" --after _ruby_setup is_osx && _osx_path_setup @@ -105,7 +106,7 @@ function _tex_setup { } function _emacs_setup { - add_to_path "$HOME/.evm/bin" --before + add_to_path "$HOME/.evm/bin" "$HOME/.cask/bin" --before command_exists evm || curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash }