From 344c010895570291c59da6040f2bcff15175ecdc Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Sat, 11 Jun 2022 15:15:48 +0200 Subject: [PATCH] zsh: added local node_modules to path --- zsh/.zshenv | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshenv b/zsh/.zshenv index 038446b..e528601 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -14,6 +14,9 @@ path_if_exists ~/.local/share/doom/bin path_if_exists ~/.local/share/go/bin path_if_exists ~/.local/share/cargo/bin +# Add local node_modules +export PATH="./node_modules/.bin/:$PATH" + # Set GPG TTY export GPG_TTY="$(tty)"