Caricati i plugin in maniera differente - 1.

This commit is contained in:
Emiliano Vavassori 2021-12-30 00:22:36 +01:00
parent 49c52f624f
commit 2930680b21
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -33,7 +33,7 @@ elif uname -a | grep -qi '\(arch\|manjaro\)'; then
fi
# Plugins
for plugin in `/bin/ls -1 ~/.dotfiles/zsh/plugins/*.plugins.zsh`; do
for plugin in `find $DOTFILES -type f -iname \*.plugin.zsh -print`; do
source $plugin
done