dotfiles/shell/direnv.sh

10 lines
197 B
Bash
Raw Normal View History

2021-01-06 18:05:27 +01:00
#!/usr/bin/env bash
if command -v direnv >/dev/null; then
2026-01-17 00:00:14 +01:00
if [ -n "$BASH_VERSION" ]; then
eval "$(direnv hook bash)"
elif [ -n "$ZSH_VERSION" ]; then
eval "$(direnv hook zsh)"
fi
2021-01-06 18:05:27 +01:00
fi