10 lines
240 B
Bash
10 lines
240 B
Bash
[[ "$(uname)" == 'Darwin' ]] && export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:$PATH"
|
|
|
|
if builtin type -p dircolors &> /dev/null; then
|
|
eval "$(dircolors)"
|
|
fi
|
|
|
|
if builtin type -p zoxide &> /dev/null; then
|
|
eval "$(zoxide init zsh)"
|
|
fi
|