this repo has no description
0
fork

Configure Feed

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

zsh: some zapier stuff

+13
+13
zsh/zshrc
··· 43 43 # pnpm end 44 44 45 45 if command -v wt >/dev/null 2>&1; then eval "$(command wt config shell init zsh)"; fi 46 + 47 + # zdev-dev shell completions 48 + [[ -f /Users/sethetter/.zdev/completions/zsh.zsh ]] && source /Users/sethetter/.zdev/completions/zsh.zsh 49 + 50 + 51 + # zdev repo — cd integration 52 + zfr() { 53 + local dir 54 + dir="$(command zdev repo)" 55 + if [ -n "$dir" ] && [ -d "$dir" ]; then 56 + cd "$dir" || return 57 + fi 58 + }