From d2924c2485d00b84be7ed4bbc112b766aa6dc70a Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Thu, 23 May 2024 10:28:40 +0400 Subject: [PATCH] add bun settings to zshrc --- zsh/.zshrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index d43756c..3a52253 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -72,3 +72,10 @@ alias vim="nvim" # Shell integrations eval "$(fzf --zsh)" eval "$(zoxide init --cmd cd zsh)" + +# bun completions +[ -s "/home/laurent/.bun/_bun" ] && source "/home/laurent/.bun/_bun" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"