dotfiles/bash/.bashrc

16 lines
287 B
Bash
Raw Normal View History

2022-11-16 19:01:14 -07:00
#!/bin/bash
2022-05-04 19:11:10 -06:00
# get custom bash scripts
2022-11-16 19:01:14 -07:00
if [ -d ~/.bash/ ]; then
for f in ~/.bash/*; do . $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