dotfiles/.zsh.d/direnv.zsh
2024-02-10 21:33:24 +09:00

8 lines
115 B
Bash

which direnv > /dev/null
RC=$?
if [ $RC -eq 0 ]; then
export EDITOR=/usr/bin/vim
eval "$(direnv hook zsh)"
fi