blob: 11e0c4fadefd65ebd140e9eaac48ee0be6e5641c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$HOME/.local/bin:$HOME/bin:$PATH
export PATH
|