mirror of
https://github.com/limosek/zaf.git
synced 2024-11-13 05:59:06 +01:00
16 lines
292 B
Bash
16 lines
292 B
Bash
# Update repo
|
|
zaf_update_repo() {
|
|
cd ${ZAF_REPO_DIR} && git pull
|
|
}
|
|
|
|
# List installed plugins
|
|
zaf_list_installed_plugins() {
|
|
cd ${ZAF_PLUGINS_DIR}; ls -d
|
|
}
|
|
|
|
# Install plugin.
|
|
# Parameter is url, directory or plugin name (will be searched in default plugin dir)
|
|
zaf_install_plugin() {
|
|
a
|
|
}
|