this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

zsh: completions!

+4 -2
+4 -2
zsh/zshrc
··· 1 + autoload -Uz compinit && compinit 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 - *":$PNPM_HOME:"*) ;; 28 - *) export PATH="$PNPM_HOME:$PATH" ;; 29 + *":$PNPM_HOME:"*) ;; 30 + *) export PATH="$PNPM_HOME:$PATH" ;; 29 31 esac 30 32 # pnpm end