From a32ed413266b2929a6e63e328069af9adc5ba66f Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Thu, 30 Dec 2021 01:16:32 +0100 Subject: [PATCH] Correzione alla ricerca di plugin. --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index bc74acd..324d3d2 100644 --- a/.zshrc +++ b/.zshrc @@ -36,7 +36,7 @@ elif uname -a | grep -qi '\(arch\|manjaro\)'; then fi # Plugins -for plugin in `find $DOTFILES/zsh/plugin -type f -iname \*.plugin.zsh -print`; do +for plugin in `find $DOTFILES/zsh/plugins -type f -iname \*.plugin.zsh -print`; do source $plugin done