mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
# Load all files from .shell/rc.d directory
|
|
if [ -d $HOME/.shellrc/rc.d ]; then
|
|
for file in $HOME/.shellrc/rc.d/*.sh; do
|
|
source $file
|
|
done
|
|
fi
|
|
|
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
|
|