Skip to content

Commit

Permalink
feat(zshrc): handle more gnu utils in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Nov 28, 2023
1 parent b1f1bb1 commit adcfb8e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions files/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,13 @@ _paths=(
# Add brew paths
_paths+=( "$(brew --prefix python 2>/dev/null || echo "")/libexec/bin" )
_paths+=( "$(brew --prefix coreutils 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix findutils 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix gnu-indent 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix gnu-sed 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix gnutls 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix grep 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix gnu-tar 2>/dev/null || echo "")/libexec/gnubin" )
_paths+=( "$(brew --prefix gawk 2>/dev/null || echo "")/libexec/gnubin" )

# Add remaining priority paths
_paths+=(
Expand Down

0 comments on commit adcfb8e

Please sign in to comment.