From c002b9a515eed6ac3b15c5d3eb1a18d47a9771f8 Mon Sep 17 00:00:00 2001 From: Maciej Jur Date: Tue, 26 Sep 2023 21:21:34 +0200 Subject: [PATCH] feat(bash): add bun path --- bash/.bashrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index acc9a1d..c776919 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -37,7 +37,10 @@ export EDITOR="$(command -v nvim 2>/dev/null || command -v vim 2>/dev/null || co # ghcup (Haskell) [ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env -# Nodejs +# NodeJS export npm_config_prefix="$HOME/.local" export PATH="$HOME/.local/bin:$PATH" +# Bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"