mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 01:13:01 +01:00
9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if command -v direnv >/dev/null; then
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
eval "$(direnv hook bash)"
|
|
elif [ -n "$ZSH_VERSION" ]; then
|
|
eval "$(direnv hook zsh)"
|
|
fi
|
|
fi
|