this repo has no description
0
fork

Configure Feed

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

zsh: some stuff

+9 -1
+1 -1
zsh/zshenv
··· 61 61 alias aic="aicommits --type conventional" 62 62 63 63 # Load zapier-specific config if on my work machine 64 - ZAPIER_ZSHENV="${HOME}/projects/zapier/zapier/utils/zshenv" 64 + ZAPIER_ZSHENV="${HOME}/projects/zapier/utils/zshenv" 65 65 if [[ $(hostname) == "asteroid" && -f "${ZAPIER_ZSHENV}" ]]; then 66 66 source "${ZAPIER_ZSHENV}" 67 67 fi
+8
zsh/zshrc
··· 20 20 export PATH="$HOME/.local/share/mise/shims:$PATH" 21 21 export PATH="$HOME/.bun/bin:$PATH" 22 22 export PATH="$HOME/.local/bin:$PATH" 23 + 24 + # pnpm 25 + export PNPM_HOME="/Users/sethetter/Library/pnpm" 26 + case ":$PATH:" in 27 + *":$PNPM_HOME:"*) ;; 28 + *) export PATH="$PNPM_HOME:$PATH" ;; 29 + esac 30 + # pnpm end