diff options
author | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2022-11-03 14:18:57 +0100 |
---|---|---|
committer | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2022-11-03 14:18:57 +0100 |
commit | 07095d22c379cbd9edb0b04f38dcf0eb9e251a2b (patch) | |
tree | 732b5a155fdec603256b4b45ef101a643514a78b /.zshrc | |
parent | 654a2cf03e6298474008488a01dbec630266d5c8 (diff) |
fix: 'source' does not take multiple files as arguments
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -172,7 +172,10 @@ zgenom load 'https://github.com/MichaelAquilina/zsh-you-should-use' source ~/.zsh_local # TODO break this up -source ~/.env_* +for f in ~/.env_*(N) +do + source $f +done typeset -U path |