dotfiles/private_dot_config/zsh/path
array-in-a-matrix 3eb20a1a25 update
2024-04-22 17:01:34 -04:00

20 lines
470 B
Bash

#!/bin/zsh
export PATH="$HOME/.local/bin:$PATH"
# programming languages
export PATH="$GOPATH/bin:$PATH"
export PATH="$BUN_INSTALL/bin:$PATH"
export PATH="$HOME/.local/share/python/bin:$PATH"
export PATH="$HOME/.nimble/bin:$PATH"
export PATH="$HOME/.local/share/nimble/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