zshrc program changes
This commit is contained in:
parent
325cdc1ca4
commit
0cff8fb0fd
1 changed files with 12 additions and 6 deletions
18
zsh/.zshrc
18
zsh/.zshrc
|
|
@ -20,11 +20,17 @@ export PATH="$PATH:$HOME/.local/bin/dart-sass"
|
|||
# User program: add yarn
|
||||
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||
|
||||
# User program: add 1password SSH utils
|
||||
if [ -d "$HOME/.1password-ssh-utils/bin" ]; then
|
||||
export PATH="$HOME/.1password-ssh-utils/bin:$PATH"
|
||||
alias ssh="op-ssh-fetch -n && ssh"
|
||||
fi
|
||||
|
||||
# User program: add rbenv
|
||||
[ -d "$HOME/.rbenv/bin" ] && eval "$(~/.rbenv/bin/rbenv init - zsh)"
|
||||
|
||||
# User program: add installed go binaries from $GOBIN or $GOPATH/bin
|
||||
type go &>/dev/null && export PATH="$PATH:${"$(go env GOBIN)":-"$(go env GOPATH)/bin"}"
|
||||
|
||||
# User program: pnpm
|
||||
# pnpm
|
||||
export PNPM_HOME="/home/erin/.local/share/pnpm"
|
||||
case ":$PATH:" in
|
||||
*":$PNPM_HOME:"*) ;;
|
||||
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||
esac
|
||||
# pnpm end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue