dotfiles/bash/.bashrc
2022-11-16 19:01:14 -07:00

16 lines
329 B
Bash

#!/bin/bash
# get custom bash scripts
if [ -d ~/.bash/ ]; then
for f in ~/.bash/*; do . $f; done
fi
# install asdf
#. $HOME/.asdf/asdf.sh
#. $HOME/.asdf/completions/asdf.bash
# devkitpro
DEVKITPRO=/opt/devkitpro
DEVKITARM=/opt/devkitpro/devkitARM
DEVKITPPC=/opt/devkitpro/devkitPPC
export PATH=$PATH:/home/bryson/.spicetify