blob: e5535309ce09aa0dce2ae43be035a2ce67cbd61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# .bash_profile
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
. /usr/share/autojump/autojump.bash
export PATH
complete -cf doas
export PATH=$PATH:/home/bryson/.spicetify
#source "/home/bryson/git/emsdk/emsdk_env.sh"
|