tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
zsh: completions!
seth.computer
2 months ago
e5e4c85a
61a35036
verified
This commit was signed with the committer's
known signature
.
seth.computer
SSH Key Fingerprint:
SHA256:utUtG8j2hgvZ0Rnm/rPJiqFu4NT5bjOnC26AUIBh500=
+4
-2
1 changed file
expand all
collapse all
unified
split
zsh
zshrc
+4
-2
zsh/zshrc
reviewed
···
1
1
+
autoload -Uz compinit && compinit
2
2
+
1
3
# homebrew, load first because it manages many downstream dependencies from here
2
4
[ -f "/opt/homebrew/bin/brew" ] && eval "$(/opt/homebrew/bin/brew shellenv)"
3
5
[ -f "/home/linuxbrew/.linuxbrew/bin/brew" ] && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
···
24
26
# pnpm
25
27
export PNPM_HOME="/Users/sethetter/Library/pnpm"
26
28
case ":$PATH:" in
27
27
-
*":$PNPM_HOME:"*) ;;
28
28
-
*) export PATH="$PNPM_HOME:$PATH" ;;
29
29
+
*":$PNPM_HOME:"*) ;;
30
30
+
*) export PATH="$PNPM_HOME:$PATH" ;;
29
31
esac
30
32
# pnpm end