bashrc & zshrc: source warnings

This commit is contained in:
Mika Suomalainen 2012-07-14 20:46:08 +03:00
parent 6f55b6a002
commit d3c85c079d
2 changed files with 10 additions and 0 deletions

5
bashrc
View File

@ -450,3 +450,8 @@ if [ -f ~/.custom ]; then
if [ -f ~/.bash_custom ]; then
source ~/.bash_custom
fi
# Warnings
if [ -f ~/.warnings ]; then
source ~/.warnings
fi

5
zshrc
View File

@ -399,3 +399,8 @@ if [ -f ~/.custom ]; then
if [ -f ~/.zsh_custom ]; then
source ~/.zsh_custom
fi
# Warnings
if [ -f ~/.warnings ]; then
source ~/.warnings
fi