this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add path for globally installed npm packages via mise alias

+5
+5
zsh/zshenv
··· 109 109 export PATH="$HOME/.deno/bin:$PATH" 110 110 export PATH="$HOME/.local/bin:$PATH" 111 111 112 + # A mise alias for globally install npm packages, make sure it's always in the path, 113 + # should show up after the mise-added paths, so local version global installs will 114 + # take precedence. 115 + export PATH="$HOME/.local/share/mise/installs/node/globals/bin:$PATH" 116 + 112 117 [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" 113 118 114 119 [ -f "$HOME/code/zapier/personal-utils.sh" ] && source "$HOME/code/zapier/personal-utils.sh"