From 20672d2c7a8b41a4434a8152b47ef8ec002e8ce0 Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Fri, 8 Jan 2021 19:16:43 +0100 Subject: [PATCH] zsh: fix the direnv hook oopsie --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index f67dee3..504d26d 100644 --- a/.zshrc +++ b/.zshrc @@ -120,7 +120,7 @@ case "$unamestr" in esac # hook in direnv, if it installed -if ! type "direnv" > /dev/null; then +if type "direnv" > /dev/null; then eval "$(direnv hook zsh)" fi