flocon/dot_bashrc

12 lines
270 B
Text
Raw Normal View History

2023-09-20 16:16:15 +00:00
#
# ~/.bashrc
#
# if running interactively, run fish
if [[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} ]]
then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=''
exec fish $LOGIN_OPTION
fi
2024-03-20 16:02:33 +00:00
. "$HOME/.cargo/env"