From e02073ae9f3abc7842910d23a00c15174d0b7d3d Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Mon, 31 Mar 2025 10:05:57 +0400 Subject: [PATCH] update PATH in zsh configuration to include npm global binaries --- zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 6c53fbc..cf61e22 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -78,4 +78,4 @@ export BUN_INSTALL="${bun_install:-$HOME/.bun}" [ -s "$BUN_INSTALL/_bun" ] && source "$BUN_INSTALL/_bun" export TERM=xterm-256color -export PATH="$HOME/go/bin:$BUN_INSTALL/bin:$HOME/.local/bin:$PATH" +export PATH="$HOME/go/bin:$BUN_INSTALL/bin:$HOME/.local/bin:$HOME/.npm-global/bin:$PATH"