Set /usr/bin as path in shell path

This commit is contained in:
Ivan Malison 2016-09-08 13:10:54 -07:00
parent 8735843399
commit 5065459e6b
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -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
}