mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-17 17:03:32 +01:00
[bash] Read .local/bashrc.private if available
This commit is contained in:
parent
c923c38566
commit
77195d5de3
1 changed files with 4 additions and 0 deletions
|
@ -47,5 +47,9 @@ fi
|
|||
# Always source a local bashrc
|
||||
[ -r "$HOME/.bashrc.local" ] && source "$HOME/.bashrc.local"
|
||||
|
||||
# Use the local(ly linked) bashrc.private
|
||||
[ -r "$HOME/.local/bashrc.private" ] && source "$HOME/.local/bashrc.private"
|
||||
|
||||
|
||||
# Also check in .local for a bashrc
|
||||
[ -r "$HOME/.local/bashrc" ] && source "$HOME/.local/bashrc"
|
||||
|
|
Loading…
Reference in a new issue