diff options
author | Dennis Eriksen <d@ennis.no> | 2024-05-26 12:30:39 +0200 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2024-05-26 12:30:39 +0200 |
commit | edfacb177ea77be2ff915927c5dcff06c8a48d2f (patch) | |
tree | dbbafbe51b3cabcab05f5ccc02a4a11b47a9b959 | |
parent | add homebrew/sbin to path (diff) | |
download | idgatt-edfacb177ea77be2ff915927c5dcff06c8a48d2f.tar.gz |
use curl from homebrew if available
-rw-r--r-- | zsh/.zshenv | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv index 69d90d1..cb4d0fa 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -103,6 +103,7 @@ path=( ~'/bin'(-/N:A) ${^path}(-/N:A) ) [[ $OSTYPE == darwin* ]] && path=( ~'/bin'(-/N:A) # throw in ~/bin again here, to make sure it's first in your $path '/opt/homebrew/opt/coreutils/libexec/gnubin'(-/N:A) # give us coreutils in $path on macOS + '/opt/homebrew/opt/curl/bin'(-/N:A) # use curl from homebrew, if available '/opt/homebrew/bin'(-/N:A) '/opt/homebrew/sbin'(-/N:A) $path ) |