mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Added dot-env plugin
Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments. See: https://github.com/midwire/.env
This commit is contained in:
parent
f4944d5a95
commit
ae2db75f3e
20 changed files with 629 additions and 0 deletions
7
plugins/dot-env/global/global_alias.sh
Normal file
7
plugins/dot-env/global/global_alias.sh
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Now source global aliases
|
||||
for i in $DOT_ENV_PATH/global/alias/*.sh ; do
|
||||
if [ -r "$i" ]; then
|
||||
. $i
|
||||
fi
|
||||
done
|
||||
unset i
|
||||
Loading…
Add table
Add a link
Reference in a new issue