From a543abc581071019a61ef3c92417dd7ec6d6805f Mon Sep 17 00:00:00 2001 From: juancwu <46619361+juancwu@users.noreply.github.com> Date: Mon, 11 Sep 2023 16:48:15 -0400 Subject: [PATCH] add bun bin path to fish config --- .config/fish/config.fish | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 79e46a4..a0396da 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -74,3 +74,7 @@ end set -gx PNPM_HOME "/home/jc/.local/share/pnpm" set -gx PATH "$PNPM_HOME" $PATH # pnpm end + +# bun +set --export BUN_INSTALL "$HOME/.bun" +set --export PATH $BUN_INSTALL/bin $PATH