12 lines
210 B
Bash
12 lines
210 B
Bash
# .bashrc
|
|
|
|
# Source my settings
|
|
if [ -f "$HOME/.bashrc.kuba" ]; then
|
|
. "$HOME/.bashrc.kuba"
|
|
fi
|
|
|
|
# Settings not included in dotfiles repo
|
|
if [ -f "$HOME/.bashrc.local" ]; then
|
|
. "$HOME/.bashrc.local"
|
|
fi
|