dotfiles/private_dot_config/zsh/path
array-in-a-matrix 1f26fc21ef update
2024-02-20 13:10:56 -05:00

21 lines
504 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/.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