mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-12 01:52:31 +01:00
Initial implementation of a new plugin system, so that people can managed which aliases/functions they want.
This commit is contained in:
parent
eb0f3c0234
commit
3cf9ab722e
9 changed files with 69 additions and 64 deletions
|
|
@ -10,6 +10,10 @@ for config_file ($ZSH/lib/*.zsh) source $config_file
|
|||
# Load all of your custom configurations from custom/
|
||||
for config_file ($ZSH/custom/*.zsh) source $config_file
|
||||
|
||||
# Load all of the plugins that were defined in ~/.zshrc
|
||||
plugin=${plugin:=()}
|
||||
for plugin ($plugins) source $ZSH/plugins/$plugin.plugin.zsh
|
||||
|
||||
# Check for updates on initial load...
|
||||
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
||||
then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue