Alexander Hess
9c4ea2ecfe
- add config files for both bash and zsh - as some utilities regard git to be present, git's config files are included as well
8 lines
213 B
Bash
8 lines
213 B
Bash
# Executed by bash when a login shell starts
|
|
|
|
# Mimic bash's default behavior and source `~/.bash_login` next
|
|
if [ -f "$HOME/.bash_login" ]; then
|
|
source "$HOME/.bash_login"
|
|
else
|
|
source "$HOME/.profile"
|
|
fi
|