mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
use zsh
This commit is contained in:
@@ -1,15 +1,10 @@
|
||||
# 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
|
||||
source $file || echo "Failed to source $file"
|
||||
done
|
||||
fi
|
||||
|
||||
if [ -d $HOME/.shellrc/rc.d ]; then
|
||||
for file in $HOME/.shellrc/rc.d/*.bash; do
|
||||
source $file
|
||||
source $file || echo "Failed to source $file"
|
||||
done
|
||||
fi
|
||||
|
||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||
|
||||
|
||||
Reference in New Issue
Block a user