This commit is contained in:
2026-02-15 21:13:57 -08:00
parent e3b0fdbddb
commit 7db8a5908a
11 changed files with 316 additions and 179 deletions

View File

@@ -102,3 +102,11 @@ zle -N bracketed-paste bracketed-paste-magic
alias claude-mem='bun "/home/sudacode/.claude/plugins/marketplaces/thedotmack/plugin/scripts/worker-service.cjs"'
fpath=(/home/sudacode/.zsh/completions $fpath)
autoload -Uz compinit && compinit
# pnpm
export PNPM_HOME="/home/sudacode/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end