mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-09-21 18:46:06 +02:00
101 lines
3.5 KiB
YAML
101 lines
3.5 KiB
YAML
dependencies:
|
|
plugins/gitfast:
|
|
repo: felipec/git-completion
|
|
branch: master
|
|
version: tag:v2.2
|
|
postcopy: |
|
|
set -e
|
|
rm -rf git-completion.plugin.zsh Makefile t tools
|
|
mv README.adoc MANUAL.adoc
|
|
mv -f src/* .
|
|
rmdir src
|
|
plugins/gradle:
|
|
repo: gradle/gradle-completion
|
|
branch: master
|
|
version: e7c881dbef7462bc35ad05328397e1582fe25cb8
|
|
precopy: |
|
|
set -e
|
|
find . ! -name _gradle ! -name LICENSE -delete
|
|
plugins/history-substring-search:
|
|
repo: zsh-users/zsh-history-substring-search
|
|
branch: master
|
|
version: 14c8d2e0ffaee98f2df9850b19944f32546fdea5
|
|
precopy: |
|
|
set -e
|
|
rm -f zsh-history-substring-search.plugin.zsh
|
|
test -e zsh-history-substring-search.zsh && mv zsh-history-substring-search.zsh history-substring-search.zsh
|
|
postcopy: |
|
|
set -e
|
|
test -e dependencies/OMZ-README.md && cat dependencies/OMZ-README.md >> README.md
|
|
plugins/kube-ps1:
|
|
repo: jonmosco/kube-ps1
|
|
branch: master
|
|
version: 04af46f7fe888ad287abcab6699b9bb10234bc3d
|
|
precopy: |
|
|
set -e
|
|
find . ! -name kube-ps1.sh ! -name LICENSE ! -name README.md -delete
|
|
test -e kube-ps1.sh && mv kube-ps1.sh kube-ps1.plugin.zsh
|
|
plugins/wd:
|
|
repo: mfaerevaag/wd
|
|
branch: master
|
|
version: tag:v0.10.1
|
|
precopy: |
|
|
set -e
|
|
rm -r test
|
|
rm install.sh tty.gif wd.1
|
|
plugins/z:
|
|
branch: master
|
|
repo: agkozak/zsh-z
|
|
version: 102fb78036ed76feedf623907483691777a1d510
|
|
precopy: |
|
|
set -e
|
|
rm -r tests
|
|
test -e README.md && mv -f README.md MANUAL.md
|
|
postcopy: |
|
|
set -e
|
|
test -e _zshz && mv -f _zshz _z
|
|
test -e zsh-z.plugin.zsh && mv -f zsh-z.plugin.zsh z.plugin.zsh
|
|
plugins/zsh-autosuggestions:
|
|
repo: zsh-users/zsh-autosuggestions
|
|
branch: master
|
|
version: 85919cd1ffa7d2d5412f6d3fe437ebdbeeec4fc5
|
|
precopy: |
|
|
set -e
|
|
test -e README.md && mv -f README.md MANUAL.md
|
|
sed -i 's|\[INSTALL.md\](INSTALL.md)|[the Oh My Zsh plugin README](README.md)|' MANUAL.md
|
|
rm -f zsh-autosuggestions.plugin.zsh
|
|
mv -f zsh-autosuggestions.zsh zsh-autosuggestions.plugin.zsh
|
|
find . -depth -mindepth 1 \
|
|
! -path './LICENSE' \
|
|
! -path './MANUAL.md' \
|
|
! -path './src' \
|
|
! -path './src/*' \
|
|
! -path './zsh-autosuggestions.plugin.zsh' \
|
|
-delete
|
|
plugins/zsh-syntax-highlighting:
|
|
repo: zsh-users/zsh-syntax-highlighting
|
|
branch: master
|
|
version: 2fc57d63067c18b1100ecdbf684fa5baf49459d1
|
|
precopy: |
|
|
set -e
|
|
version=$(<.version)
|
|
test -e README.md && mv -f README.md MANUAL.md
|
|
sed -i 's|\[INSTALL.md\](INSTALL.md)|[the Oh My Zsh plugin README](README.md)|' MANUAL.md
|
|
rm -f zsh-syntax-highlighting.plugin.zsh
|
|
mv -f zsh-syntax-highlighting.zsh zsh-syntax-highlighting.plugin.zsh
|
|
mv -f COPYING.md LICENSE
|
|
sed -i "s|typeset -g ZSH_HIGHLIGHT_VERSION=.*|typeset -g ZSH_HIGHLIGHT_VERSION=$version|" zsh-syntax-highlighting.plugin.zsh
|
|
sed -i 's|typeset -g ZSH_HIGHLIGHT_REVISION=.*|typeset -g ZSH_HIGHLIGHT_REVISION=HEAD|' zsh-syntax-highlighting.plugin.zsh
|
|
find highlighters -type d -name test-data -prune -exec rm -rf {} +
|
|
find . -depth -mindepth 1 \
|
|
! -path './LICENSE' \
|
|
! -path './MANUAL.md' \
|
|
! -path './docs' \
|
|
! -path './docs/*' \
|
|
! -path './highlighters' \
|
|
! -path './highlighters/*' \
|
|
! -path './images' \
|
|
! -path './images/*' \
|
|
! -path './zsh-syntax-highlighting.plugin.zsh' \
|
|
-delete
|