From 1b84dcd3e192162ecbc62862bda766fefd0241d6 Mon Sep 17 00:00:00 2001 From: Wassim DHIF Date: Tue, 3 Oct 2023 09:47:12 +0200 Subject: [PATCH] [zsh] Add ~/.local/bin to PATH --- zsh/custom/path.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/custom/path.zsh b/zsh/custom/path.zsh index ad7a7c5..e90d93c 100644 --- a/zsh/custom/path.zsh +++ b/zsh/custom/path.zsh @@ -17,6 +17,7 @@ if [[ $OSTYPE == 'darwin'* ]]; then PATH=/opt/homebrew/sbin:$PATH # Homebrew default location superuser binaries before default macOS binaries PATH=~/.homebrew/bin:$PATH # Homebrew binaries before default macOS binaries PATH=~/.homebrew/sbin:$PATH # Homebrew superuser binaries before default macOS binaries + PATH=~/.local/bin:$PATH NVM_DIR="$HOME/.nvm" # Add nvm directory [ -s "/Users/wdhif/.homebrew/opt/nvm/nvm.sh" ] && . "/Users/wdhif/.homebrew/opt/nvm/nvm.sh" # Load nvm [ -s "/Users/wdhif/.homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && . "/Users/wdhif/.homebrew/opt/nvm/etc/bash_completion.d/nvm" # Load nvm completion