From a34e2d370eec6262eaf4bb48a1c9544d1feae74a Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 23 May 2020 19:20:11 +0100 Subject: [PATCH] Reorder basic system paths slightly --- zshenv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zshenv b/zshenv index a64a079..f08f0e0 100644 --- a/zshenv +++ b/zshenv @@ -76,12 +76,12 @@ if [[ "$TMPDIR" == "/var/folders/"* ]] || [[ "$TMPDIR" == "" ]]; then fi # Ensure basic systems paths are in desired order -path_prepend "/sbin" -path_prepend "/usr/sbin" path_prepend "/bin" +path_prepend "/sbin" path_prepend "/usr/bin" -path_prepend "/usr/local/sbin" +path_prepend "/usr/sbin" path_prepend "/usr/local/bin" +path_prepend "/usr/local/sbin" # Add dotfiles' bin directory to PATH path_prepend "$DOTBIN"