dotfiles/bash/.bashrc

15 lines
323 B
Bash
Raw Normal View History

2022-05-04 19:11:10 -06:00
# get custom bash scripts
if [[ -d ~/.bash/ ]]; then
for f in ~/.bash/*; do source $f; done
2022-03-03 22:13:34 -07:00
fi
2022-05-04 19:11:10 -06:00
# install asdf
2022-10-26 12:05:56 -06:00
#. $HOME/.asdf/asdf.sh
#. $HOME/.asdf/completions/asdf.bash
2022-03-03 22:13:34 -07:00
2022-05-04 19:11:10 -06:00
# devkitpro
DEVKITPRO=/opt/devkitpro
DEVKITARM=/opt/devkitpro/devkitARM
DEVKITPPC=/opt/devkitpro/devkitPPC
2022-10-26 12:05:56 -06:00
export PATH=$PATH:/home/bryson/.spicetify