bash: add bun to PATH

This commit is contained in:
2022-07-26 23:31:25 +03:00
parent be609e96fa
commit 363a3d4a5e

View File

@@ -20,8 +20,10 @@ MY_BIN="$DOTFILES/bin"
RUST_BIN="$HOME/.cargo/bin" RUST_BIN="$HOME/.cargo/bin"
PYTHON_BIN="$HOME/.local/bin" PYTHON_BIN="$HOME/.local/bin"
ANDROID_BIN="$ANDROID_SDK_ROOT/emulator:$ANDROID_SDK_ROOT/platform-tools" ANDROID_BIN="$ANDROID_SDK_ROOT/emulator:$ANDROID_SDK_ROOT/platform-tools"
BUN_INSTALL="$HOME/.bun"
BUN_BIN="$BUN_INSTALL/bin"
export PATH="$PATH:$MY_BIN:$PYTHON_BIN:$RUST_BIN:$GOBIN:$ANDROID_BIN" export PATH="$PATH:$MY_BIN:$PYTHON_BIN:$RUST_BIN:$GOBIN:$ANDROID_BIN:$BUN_BIN"
# Source bash completions # Source bash completions
source $HOME/.config/bash-completions/* source $HOME/.config/bash-completions/*