11 lines
188 B
Bash
11 lines
188 B
Bash
export PNPM_HOME=~/.local/share/pnpm
|
|
|
|
path=(
|
|
$PNPM_HOME/bin
|
|
~/.local/bin
|
|
$path
|
|
)
|
|
|
|
. ~/.cargo/env
|
|
[[ "$TERM_PROGRAM" == "vscode" ]] && . "$(code --locate-shell-integration-path zsh)"
|