blob: 542b904f80536b981ec5ea4bcbcbec7e0e709bd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# ~~~ bash config
#
# exit early if not interactive
if [[ $- != *i* ]]; then
return
fi
# switch to nushell
[ -x /opt/homebrew/bin/nu ] && SHELL=/opt/homebrew/bin/nu exec /opt/homebrew/bin/nu
|