From 6ee8b800ccc462993840fc17d65a3d6cae611631 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 22 Jan 2022 21:27:38 -0800 Subject: [PATCH] [zsh] Add Homembrew /opt paths to my path if they exist --- zsh/func/init_path | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/func/init_path b/zsh/func/init_path index 1b22195..707f92e 100644 --- a/zsh/func/init_path +++ b/zsh/func/init_path @@ -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"