mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
11 lines
162 B
Bash
11 lines
162 B
Bash
#!/bin/zsh
|
|
|
|
source_env() {
|
|
if [[ -f .env ]]; then
|
|
source .env
|
|
fi
|
|
}
|
|
|
|
autoload -U add-zsh-hook
|
|
add-zsh-hook chpwd source_env
|
|
add-zsh-hook precmd source_env
|