dotfiles/private_dot_config/zsh/path
array-in-a-matrix e7d983280f update
2023-11-22 14:13:40 -05:00

20 lines
454 B
Bash

#!/bin/zsh
export PATH="$PROJECTS/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
# programming languages
export PATH="$GOPATH/bin:$PATH"
export PATH="$BUN_INSTALL/bin:$PATH"
export PATH="$HOME/.nimble/bin:$PATH"
export PATH="$HOME/.local/share/python/bin:$PATH"
export PATH=$HOME/home/linux/.cargo/bin:$PATH
# pnpm
export PNPM_HOME="/home/linux/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac