mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Load all plugins from each plugin folder
This commit is contained in:
parent
dc12853b0c
commit
18eaede408
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ for config_file ($ZSH/custom/*.zsh) source $config_file
|
||||||
|
|
||||||
# Load all of the plugins that were defined in ~/.zshrc
|
# Load all of the plugins that were defined in ~/.zshrc
|
||||||
plugin=${plugin:=()}
|
plugin=${plugin:=()}
|
||||||
for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
for plugin ($plugins) for plugin_file ($ZSH/plugins/$plugin/*.plugin.zsh) source $plugin_file
|
||||||
|
|
||||||
# Check for updates on initial load...
|
# Check for updates on initial load...
|
||||||
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue