From afc474c35b8d06159e754df257b4576cc79839ff Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Mon, 22 Sep 2025 10:32:23 -0400 Subject: [PATCH] feat: Bun support --- zsh/dot-zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 27ec55e..e410f55 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -91,3 +91,9 @@ export PATH=/home/myockey/.opencode/bin:$PATH fpath=(/Users/myockey/.docker/completions $fpath) # End of Docker CLI completions +# bun completions +[ -s "/Users/myockey/.bun/_bun" ] && source "/Users/myockey/.bun/_bun" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"