19 lines
509 B
Bash
19 lines
509 B
Bash
#!/bin/sh
|
|
|
|
# Function to source files if they exist.
|
|
function zsh_include_file() {
|
|
[ -f "$ZDOTDIR/$1" ] && source "$ZDOTDIR/$1"
|
|
}
|
|
|
|
# Add plugin.
|
|
function zsh_add_plugin() {
|
|
PLUGIN_NAME=$(echo $1 | cut -d "/" -f 2)
|
|
if [ -d "$ZDOTDIR/plugins/$PLUGIN_NAME" ]; then
|
|
# For plugins
|
|
zsh_include_file "plugins/$PLUGIN_NAME/$PLUGIN_NAME.plugin.zsh" || \
|
|
zsh_include_file "plugins/$PLUGIN_NAME/$PLUGIN_NAME.zsh"
|
|
else
|
|
git clone "https://github.com/$1.git" "$ZDOTDIR/plugins/$PLUGIN_NAME"
|
|
fi
|
|
}
|