Add .profile

This commit is contained in:
Sebastian Bugge 2023-02-09 15:44:30 +01:00
parent 124a980832
commit c11ba09a36
No known key found for this signature in database
GPG key ID: 49D435DEDD6B2829
2 changed files with 11 additions and 0 deletions

10
.profile Normal file
View file

@ -0,0 +1,10 @@
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi

1
.zshrc
View file

@ -42,5 +42,6 @@ if [ -z "$TMUX" ]; then
tmux attach -t Default || tmux new -s Default
fi
source .profile
source .aliases