Skip to content

Commit

Permalink
feat(zsh): add pnpm envs and tab completion
Browse files Browse the repository at this point in the history
  • Loading branch information
denolfe committed Oct 7, 2023
1 parent 5d9ab85 commit b40615c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions zsh/zshrc.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,15 @@ source $DOTFILES/iterm2/iterm2_shell_integration.zsh
export ASDF_DOWNLOAD_PATH=bin/install
source /opt/homebrew/opt/asdf/libexec/asdf.sh
source /opt/homebrew/share/zsh/site-functions

# pnpm
export PNPM_HOME="/Users/elliot/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end

# tabtab source for packages
# uninstall by removing these lines
[[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true

0 comments on commit b40615c

Please sign in to comment.