-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_zshrc
More file actions
23 lines (18 loc) · 691 Bytes
/
Copy pathdot_zshrc
File metadata and controls
23 lines (18 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
. ~/.bashrc
if test -d /opt/homebrew; then
HOMEBREW_HOME=/opt/homebrew
elif test -d /home/linuxbrew/.linuxbrew; then
HOMEBREW_HOME=/home/linuxbrew/.linuxbrew
else
HOMEBREW_HOME=/usr/local
fi
export PATH="$PATH:$HOMEBREW_HOME/bin:$HOME/.rvm/bin"
[[ ! $PS1 ]] && return
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
eval "$(starship init zsh)"
source /Users/fredericrous/.config/broot/launcher/bash/br
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
# bun completions
[ -s "/Users/fredericrous/.bun/_bun" ] && source "/Users/fredericrous/.bun/_bun"