feat(zsh): added zsh config

This commit is contained in:
Sebastian Rust
2025-11-02 10:01:00 +01:00
parent 09bb1e5ede
commit 24172fc4fe
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
if [ -z ${ENV} ]; then
export ENV="${HOME}/.env.d";
fi
for config in "${ENV}"/*.enabled(N); do
source "$config"
done