[zsh] Add Homembrew /opt paths to my path if they exist

This commit is contained in:
Eryn Wells 2022-01-22 21:27:38 -08:00
parent 8211c4e4f9
commit 6ee8b800cc

View file

@ -8,6 +8,8 @@ autoload append_to_path
function init_path
{
export path=()
append-to-path "/opt/brew/bin"
append-to-path "/opt/homebrew/bin"
append_to_path "/usr/local/bin"
append_to_path "/usr/bin"
append_to_path "/bin"